working with files week 11
ch22_ex1Download <?php function process_image($dir, $filename) { // Set up the variables $dir = $dir . DIRECTORY_SEPARATOR; $i = strrpos($filename, '.'); $image_name = substr($filename, 0, $i); $ext = substr($filename, $i); //…