Home
last modified time | relevance | path

Searched refs:dir (Results 226 – 250 of 514) sorted by relevance

12345678910>>...21

/PHP-5.3/ext/standard/tests/dir/
H A Dopendir_variation7.phpt22 * Source code: ext/standard/dir.c
60 // try to remove the dir if exists & create
62 chmod ($dir_path, 0777); // change dir permission to allow all operation
67 // change the dir permisson to test dir on it
/PHP-5.3/main/streams/
H A Dplain_wrapper.c855 DIR *dir = NULL; in php_plain_files_dir_opener() local
872 dir = VCWD_OPENDIR(path); in php_plain_files_dir_opener()
875 if (!dir) { in php_plain_files_dir_opener()
879 if (dir && dir->finished) { in php_plain_files_dir_opener()
880 closedir(dir); in php_plain_files_dir_opener()
881 dir = NULL; in php_plain_files_dir_opener()
884 if (dir) { in php_plain_files_dir_opener()
887 closedir(dir); in php_plain_files_dir_opener()
1180 if (p < strchr(dir, '/')) { in php_plain_files_mkdir()
1181 dir = p + 3; in php_plain_files_mkdir()
[all …]
/PHP-5.3/ext/phar/tests/
H A D018.phpt25 $dir = opendir('phar://hio/');
26 while (false !== ($a = readdir($dir))) {
H A Dstat2.phpt29 echo "dir\n";
54 string(3) "dir"
58 dir
H A Dstat2_5.3.phpt29 echo "dir\n";
54 string(3) "dir"
58 dir
/PHP-5.3/ext/zip/tests/
H A Doo_getnameindex.phpt23 $zip->addFromString('dir/entry2d.txt', 'entry #2');
46 string(15) "dir/entry2d.txt"
/PHP-5.3/ext/pdo/tests/
H A Dbug_38253.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_012.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_013.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_015.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dbug_43130.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
12 require_once $dir . 'pdo_test.inc';
H A Dpdo_023.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_026.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_017.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_022.phpt7 $dir = getenv('REDIR_TEST_DIR');
8 if (false == $dir) die('skip no driver');
9 require_once $dir . 'pdo_test.inc';
H A Dpdo_025.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_029.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
/PHP-5.3/ext/standard/tests/file/
H A Dcopy_variation17.phpt20 $dir = $file_path."/copy_variation17";
21 mkdir($dir);
31 $dest_file_name = $dir."/copy_copy_variation17.tmp";
H A Dstat_basic-win32.phpt23 // creating dir
26 // stat of the dir created
39 // now new stat of the dir after file is created
56 echo "-- comparing difference in dir stats before and after creating file in it --\n";
78 -- comparing difference in dir stats before and after creating file in it --
H A Dis_dir_error.phpt17 /* Non-existing dir */
18 var_dump( is_dir("/no/such/dir") );
H A Dsymlink_link_linkinfo_is_link_variation8.phpt2 …inkinfo(), link() and is_link() functions : usage variations - try link with same name in diff. dir
26 /* creating link to a file in different dir with the same name as the file */
46 // delete temp dir
66 // delete temp dir
H A Dstat_variation4-win32.phpt17 /* test the effects on the stats of dir/file for using is_dir() & is_file() on dir/file */
24 mkdir("$file_path/stat_variation4/"); // temp dir
/PHP-5.3/ext/ftp/
H A Dftp.h128 int ftp_chdir(ftpbuf_t *ftp, const char *dir);
136 char* ftp_mkdir(ftpbuf_t *ftp, const char *dir);
139 int ftp_rmdir(ftpbuf_t *ftp, const char *dir);
/PHP-5.3/ext/gd/
H A Dconfig.m414 PHP_ARG_WITH(jpeg-dir, for the location of libjpeg,
19 PHP_ARG_WITH(png-dir, for the location of libpng,
24 PHP_ARG_WITH(zlib-dir, for the location of libz,
25 [ --with-zlib-dir[=DIR] GD: Set the path to libz install prefix], no, no)
28 PHP_ARG_WITH(xpm-dir, for the location of libXpm,
31 PHP_ARG_WITH(freetype-dir, for FreeType 2,
92 AC_MSG_RESULT([If configure fails try --with-jpeg-dir=<DIR>])
108 AC_MSG_ERROR([PNG support requires ZLIB. Use --with-zlib-dir=<DIR>])
123 AC_MSG_RESULT([If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>])
157 AC_MSG_RESULT(If configure fails try --with-xpm-dir=<DIR>)
[all …]
/PHP-5.3/ext/phar/tests/tar/
H A Dtar_004U.phpt23 $tar->mkDir('internal/dir');
24 $tar->mkDir('dir');

Completed in 31 milliseconds

12345678910>>...21