From c7a042e3784abb892eed23bf34c9649beb51c37e Mon Sep 17 00:00:00 2001 From: filip Date: Thu, 10 Aug 2017 00:00:04 +0200 Subject: esting server side fs 2 --- test/lang.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/test/lang.php b/test/lang.php index 831376083..f41c50955 100644 --- a/test/lang.php +++ b/test/lang.php @@ -9,12 +9,15 @@ echo 'Accept-Language: ', $_SERVER['HTTP_ACCEPT_LANGUAGE'], "\n\n"; echo "Relocate `community` with `en` as a default: ", relocate($langs, 'community', 'en', null, false), "\n"; echo "\nTests:\n"; + $test_dir = '../sv/'; $lstat = ''; if (file_exists($test_dir)) { echo "The file $test_dir exists\n"; $lstat = lstat($test_dir); +// $linkinfo = linkinfo($test_dir); + $readlink = readlink($test_dir . 'map'); } else { echo "The file $test_dir does not exist\n"; } @@ -32,3 +35,35 @@ if (is_readable($test_dir)) { } var_dump($lstat); +var_dump($readlink); + + +$test_dir = '../sl/'; +$lstat2 = ''; + +if (file_exists($test_dir)) { + echo "The file $test_dir exists\n"; + $lstat2 = lstat($test_dir); +// $linkinfo = linkinfo($test_dir); + $readlink = readlink($test_dir . 'map'); +} else { + echo "The file $test_dir does not exist\n"; +} + +if (is_dir($test_dir)) { + echo "The $test_dir is a dir\n"; +} else { + echo "The $test_dir is not a dir.\n"; +} + +if (is_readable($test_dir)) { + echo "The file $test_dir is readable\n"; +} else { + echo "The file $test_dir is not readable\n"; +} + +var_dump($lstat2); +var_dump($readlink); + +$diff = array_diff($lstat, $lstat2); +var_dump($diff); -- cgit v1.2.1