File Directory Php

    chmod("/var/www/myfile.txt", 0777);
    chmod("/var/www/myfile.txt", 0755);
    if (chown("myfile.txt", "sally")) {
            print "File owner changed.\n";
    } else {
            print "File ownership change failed!\n";
    }
?>