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/readfile_variation3.phpt |
--TEST-- Test readfile() function: usage variation - include path --FILE-- <?php /* Prototype: int readfile ( string $filename [, bool $use_include_path [, resource $context]] ); Description: Outputs a file */ /* test readfile() by providing an include path, second argument */ // include file.inc require("file.inc"); $file_path = dirname(__FILE__); $dirname = "$file_path/readfile_variation3"; echo "*** Testing readfile(): checking second argument, include path ***\n"; // temp dir created mkdir($dirname); // temp file name used here $filename = "$dirname/readfile_variation3.tmp"; // create file $fp = fopen($filename, "w"); fill_file($fp, "text_with_new_line", 50); fclose($fp); // including $dirname in 'include_path' ini_set('include_path',$dirname); // 'include_path' set to true $count = readfile("readfile_variation3.tmp", true); echo "\n"; var_dump($count); // use the context argument with include path echo "*** Testing readfile(): checking second argument, include path with context specified ***\n"; $context = stream_context_create(); $count = readfile("readfile_variation3.tmp", true, $context); echo "\n"; var_dump($count); echo "Done\n"; ?> --CLEAN-- <?php unlink(dirname(__FILE__)."/readfile_variation3/readfile_variation3.tmp"); rmdir(dirname(__FILE__)."/readfile_variation3"); ?> --EXPECT-- *** Testing readfile(): checking second argument, include path *** line line of text line line of text line line of t int(50) *** Testing readfile(): checking second argument, include path with context specified *** line line of text line line of text line line of t int(50) Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare