Skip to content

Instantly share code, notes, and snippets.

View microinginer's full-sized avatar
✈️
Open to relocating for the right opportunity

Ruslan Madatov microinginer

✈️
Open to relocating for the right opportunity
  • Remote work
  • Gulistan, Uzbekistan
  • Facebook inginer
View GitHub Profile
<?php
function resizeImage($image, $origWidth, $origHeight, $maxWidth, $maxHeight)
{
if ($maxWidth === 0) {
$maxWidth = $origWidth;
}
if ($maxHeight === 0) {
$maxHeight = $origHeight;