/
proc
/
self
/
root
/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
standard
/
tests
/
file
/
File Upload :
llllll
Current File: //proc/self/root/usr/local/lsws/phpbuild/php-8.0.7/ext/standard/tests/file/readfile_variation3.phpt
--TEST-- Test readfile() function: usage variation - include path --FILE-- <?php /* test readfile() by providing an include path, second argument */ // include file.inc require("file.inc"); $file_path = __DIR__; $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(__DIR__."/readfile_variation3/readfile_variation3.tmp"); rmdir(__DIR__."/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
Copyright ©2k19 -
Hexid
|
Tex7ure