Home
last modified time | relevance | path

Searched refs:is_dir (Results 1 – 25 of 112) sorted by relevance

12345

/php-src/ext/standard/tests/file/
H A Dis_dir_basic.phpt2 Test is_dir() function: basic functionality
5 echo "*** Testing is_dir(): basic functionality ***\n";
7 var_dump( is_dir($file_path) );
9 var_dump( is_dir(".") );
10 var_dump( is_dir(__FILE__) ); // expected: bool(false)
14 var_dump( is_dir($dir_name) );
16 echo "*** Testing is_dir() for its return value type ***\n";
17 var_dump( is_bool( is_dir($file_path) ) );
18 var_dump( is_bool( is_dir("/no/such/dir") ) );
29 *** Testing is_dir(): basic functionality ***
[all …]
H A Dis_dir_variation1.phpt2 Test is_dir() function: usage variations - dir/subdir
5 /* Testing is_dir() with base and sub dirs */
9 echo "-- Testing is_dir() with an empty dir --\n";
12 var_dump( is_dir($dirname) );
15 echo "-- Testing is_dir() with a subdir in base dir --\n";
18 var_dump( is_dir($subdirname) );
19 var_dump( is_dir($dirname) );
31 -- Testing is_dir() with an empty dir --
33 -- Testing is_dir() with a subdir in base dir --
H A Dis_dir_variation2.phpt2 Test is_dir() function: usage variations - links
11 /* Testing is_dir() with dir, soft & hard link to dir,
16 echo "*** Testing is_dir() with dir and links to dir ***\n";
20 var_dump( is_dir($dirname) );
25 var_dump( is_dir($file_path."/is_dir_variation2_symlink") ); //is_dir() resolves symlinks
30 var_dump( is_dir($file_path."/is_dir_variation2_link") );
37 var_dump( is_dir($filename) );
42 var_dump( is_dir($file_path."/is_dir_variation2_symlink.tmp") );
47 var_dump( is_dir($file_path."/is_dir_variation2_link.tmp") );
75 *** Testing is_dir() with dir and links to dir ***
[all …]
H A Dis_dir_variation3.phpt2 Test is_dir() function: usage variations - invalid arguments
7 /* Passing invalid arguments to is_dir() */
9 echo "*** Testing is_dir() with Invalid arguments: expected bool(false) ***\n";
24 var_dump( is_dir($dirname) );
28 *** Testing is_dir() with Invalid arguments: expected bool(false) ***
H A Dbug43137.phpt9 var_dump(is_dir($dirname)); // Expected: true
11 var_dump(is_dir($dirname)); // Expected: false
12 var_dump(is_dir($toname)); // Expected: true
14 var_dump(is_dir($toname)); // Expected: false
H A Dlstat_stat_variation10.phpt2 Test lstat() and stat() functions: usage variations - effects of is_dir()
9 /* test the effects of is_dir() on stats of a dir */
19 // is_dir() on a directory
20 echo "*** Testing stat() on directory after using is_dir() on it ***\n";
25 var_dump( is_dir($dirname) );
48 *** Testing stat() on directory after using is_dir() on it ***
H A Dstat_variation4-win32.phpt2 Test stat() functions: usage variations - effects of is_dir() & is_file()
12 /* test the effects on the stats of dir/file for using is_dir() & is_file() on dir/file */
26 with is_dir() and is_file() functions ***\n";
28 // is_dir() on a directory
35 var_dump( is_dir($old_dirname) );
74 with is_dir() and is_file() functions ***
H A Dis_dir_variation4.phpt2 Test is_dir() function: usage variations - diff. path notations
9 echo "*** Testing is_dir() with different notations of dir names ***";
37 var_dump( is_dir($file_path."/".$dir ) );
53 *** Testing is_dir() with different notations of dir names ***
H A Dbug45181.phpt6 var_dump(is_dir("bug45181_x"));
8 var_dump(is_dir("bug45181_x"));
H A Dbug68335.phpt7 var_dump(is_dir($dir));
9 var_dump(is_dir($dir));
H A Dbug55124.phpt8 if (is_dir('a/b')) {
11 if (is_dir('./a')) {
H A Dbug43353.phpt8 var_dump(is_dir('file:///datafoo:test'));
9 var_dump(is_dir('datafoo:test'));
H A Dbug65701.phpt9 if (!is_dir($file_path)) {
25 if (!is_dir($file_path . $file)) {
H A Dchroot_001.phpt25 var_dump(is_dir("chroot_001_x"));
27 var_dump(is_dir("chroot_001_x"));
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dbug64699.phpt2 Bug #64699 is_dir() is inaccurate result on Windows with japanese locale.
36 $type2= is_dir($path) ? 'dir' : 'file';
38 … echo "filetype()[".str_pad($type, 4)."] == is_dir()[".str_pad($type2, 4)."] -> $comp: {$file}\n";
53 filetype()[dir ] == is_dir()[dir ] -> OK: .
54 filetype()[dir ] == is_dir()[dir ] -> OK: ..
55 filetype()[dir ] == is_dir()[dir ] -> OK: a
56 filetype()[dir ] == is_dir()[dir ] -> OK: şŞıİğĞ
57 filetype()[dir ] == is_dir()[dir ] -> OK: ソ
58 filetype()[dir ] == is_dir()[dir ] -> OK: ゾ
59 filetype()[dir ] == is_dir()[dir ] -> OK: 多国語
[all …]
/php-src/tests/security/
H A Dopen_basedir_is_dir.phpt8 test_open_basedir("is_dir");
16 *** Testing open_basedir configuration [is_dir] ***
23 Warning: is_dir(): open_basedir restriction in effect. File(../bad) is not within the allowed path(…
26 Warning: is_dir(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the allow…
29 Warning: is_dir(): open_basedir restriction in effect. File(..) is not within the allowed path(s): …
32 Warning: is_dir(): open_basedir restriction in effect. File(../) is not within the allowed path(s):…
35 Warning: is_dir(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (…
38 Warning: is_dir(): open_basedir restriction in effect. File(../bad/.) is not within the allowed pat…
41 Warning: is_dir(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within the …
47 Warning: is_dir(): open_basedir restriction in effect. File(./../.) is not within the allowed path(…
[all …]
/php-src/win32/build/
H A Dmkdist.php349 if (!file_exists("$dest") || !is_dir("$dest")) {
364 if (!file_exists($openssl_dest_dir) || !is_dir($openssl_dest_dir)) {
380 if (!file_exists($sasl_dest_dir) || !is_dir($sasl_dest_dir)) {
412 if (!is_dir($dest)) {
425 if (is_dir($fs)) {
443 if (!is_dir($dest . '/tests')) {
451 if(!file_exists($directory) || !is_dir($directory)) {
462 if (!is_dir($dest . '/' . $full_path)) {
506 if (!is_dir($test_dir)) {
567 if (is_dir($item)) {
[all …]
/php-src/ext/phar/tests/cache_list/files/
H A Dwrite3.phar3 var_dump(file_exists("phar://" . __FILE__ . "/test"), is_dir("phar://" . __FILE__ . "/test"));
6 var_dump(file_exists("phar://" . __FILE__ . "/test"), is_dir("phar://" . __FILE__ . "/test"));
H A Dwrite3.phar.inc9 var_dump(file_exists("phar://" . __FILE__ . "/test"), is_dir("phar://" . __FILE__ . "/test"));
12 var_dump(file_exists("phar://" . __FILE__ . "/test"), is_dir("phar://" . __FILE__ . "/test"));
/php-src/ext/zlib/tests/
H A Dzlib_scheme_stat_basic2.phpt13 echo "is_dir=";
14 var_dump(is_dir($srcFile));
29 is_dir=bool(false)
/php-src/ext/phar/tests/
H A Dcached_manifest_1.phpt18 var_dump(is_dir($pname . '/b'));
19 var_dump(is_dir($pname . '/d'));
20 var_dump(is_dir($pname . '/b/c.php'));
H A D019b.phpt34 var_dump(is_dir($phar . $entry));
35 if (is_dir($phar . $entry))
/php-src/ext/
H A Dext_skel.php218 } else if (!is_dir($options['skel'])) {
351 if (is_dir($test)) {
378 if (!$options['dir'] || !is_dir($options['dir'])) {
380 } else if (is_dir($options['dir'] . $options['ext'])) {
/php-src/benchmark/
H A Dshared.php63 if (is_dir($path)) {
68 if (!is_dir($dir)) {
/php-src/ext/phar/
H A Dshortarc.php158 if (!file_exists($sessionpath) || !is_dir($sessionpath)) {
202 if (is_dir('/temp') || mkdir('/temp')) {
284 is_dir($f) ? @rmdir($f) : @unlink($f);
285 if (file_exists($f) && is_dir($f)) {

Completed in 24 milliseconds

12345