Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/standard/tests/file/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/file/006_error.phpt |
--TEST-- Test fileperms(), chmod() functions: error conditions --SKIPIF-- <?php if (substr(PHP_OS, 0, 3) == 'WIN') { die('skip Not on Windows'); } // Skip if being run by root $filename = dirname(__FILE__)."/006_root_check.tmp"; $fp = fopen($filename, 'w'); fclose($fp); if(fileowner($filename) == 0) { unlink ($filename); die('skip cannot be run as root'); } unlink($filename); ?> --FILE-- <?php /* Prototype: int fileperms ( string $filename ) Description: Returns the permissions on the file, or FALSE in case of an error Prototype: bool chmod ( string $filename, int $mode ) Description: Attempts to change the mode of the file specified by filename to that given in mode */ echo "*** Testing error conditions for fileperms(), chmod() ***\n"; /* With standard files and dirs */ var_dump( chmod("/etc/passwd", 0777) ); printf("%o", fileperms("/etc/passwd") ); echo "\n"; clearstatcache(); var_dump( chmod("/etc", 0777) ); printf("%o", fileperms("/etc") ); echo "\n"; clearstatcache(); /* With non-existing file or dir */ var_dump( chmod("/no/such/file/dir", 0777) ); var_dump( fileperms("/no/such/file/dir") ); echo "\n"; /* With args less than expected */ $fp = fopen(dirname(__FILE__)."/006_error.tmp", "w"); fclose($fp); var_dump( chmod(dirname(__FILE__)."/006_error.tmp") ); var_dump( chmod("nofile") ); var_dump( chmod() ); var_dump( fileperms() ); /* With args greater than expected */ var_dump( chmod(dirname(__FILE__)."/006_error.tmp", 0755, TRUE) ); var_dump( fileperms(dirname(__FILE__)."/006_error.tmp", 0777) ); var_dump( fileperms("nofile", 0777) ); echo "\n*** Done ***\n"; ?> --CLEAN-- <?php unlink( dirname(__FILE__)."/006_error.tmp"); ?> --EXPECTF-- *** Testing error conditions for fileperms(), chmod() *** Warning: chmod(): %s in %s on line %d bool(false) 100%d44 Warning: chmod(): %s in %s on line %d bool(false) 40755 Warning: chmod(): No such file or directory in %s on line %d bool(false) Warning: fileperms(): stat failed for /no/such/file/dir in %s on line %d bool(false) Warning: chmod() expects exactly 2 parameters, 1 given in %s on line %d NULL Warning: chmod() expects exactly 2 parameters, 1 given in %s on line %d NULL Warning: chmod() expects exactly 2 parameters, 0 given in %s on line %d NULL Warning: fileperms() expects exactly 1 parameter, 0 given in %s on line %d NULL Warning: chmod() expects exactly 2 parameters, 3 given in %s on line %d NULL Warning: fileperms() expects exactly 1 parameter, 2 given in %s on line %d NULL Warning: fileperms() expects exactly 1 parameter, 2 given in %s on line %d NULL *** Done ***
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare