<?php function make_directory($ftp_stream, $dir){ // if directory already exists or can be immediately created return true if (ftp_is_dir($ftp_stream, $dir) || @ftp_mkdir($ftp_stream, $dir)) return true; // otherwise recursively try to make the direc…