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/unlink_variation6.phpt |
--TEST-- Test unlink() function : variation --CREDITS-- Dave Kelsey <d_kelsey@uk.ibm.com> --FILE-- <?php /* Prototype : bool unlink(string filename[, context context]) * Description: Delete a file * Source code: ext/standard/file.c * Alias to functions: */ echo "*** Testing unlink() : variation: contexts and relative files ***\n"; // test relative directories and stream contexts. $subdir = 'subdir'; $testfile = $subdir.'/testfile.txt'; mkdir($subdir); touch($testfile); f_exists($testfile); $context = stream_context_create(); var_dump(unlink($testfile, $context)); f_exists($testfile); rmdir($subdir); function f_exists($file) { if (file_exists($file) == true) { echo "$file exists\n"; } else { echo "$file doesn't exist\n"; } } ?> ===DONE=== --EXPECTF-- *** Testing unlink() : variation: contexts and relative files *** subdir/testfile.txt exists bool(true) subdir/testfile.txt doesn't exist ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare