Home
last modified time | relevance | path

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

12345678910>>...22

/PHP-5.5/ext/spl/tests/
H A DDirectoryIterator_getGroup_basic.phpt18 $dir = new DirectoryIterator($dirname);
20 $actual = $dir->getGroup();
H A DDirectoryIterator_getOwner_basic.phpt18 $dir = new DirectoryIterator($dirname);
20 $actual = $dir->getOwner();
/PHP-5.5/ext/phar/tests/
H A D018U.phpt24 $dir = opendir('phar://hio/');
25 while (false !== ($a = readdir($dir))) {
H A D018.phpt24 $dir = opendir('phar://hio/');
25 while (false !== ($a = readdir($dir))) {
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug44295-win.phpt10 $dir = 'c:\\not\\exists\\here';
17 $iter = new DirectoryIterator($dir);
/PHP-5.5/ext/pdo/tests/
H A Dbug_34630.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_031.phpt7 $dir = getenv('REDIR_TEST_DIR');
8 if (false == $dir) die('skip no driver');
9 require_once $dir . 'pdo_test.inc';
H A Dpdo_034.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
H A Dpdo_021.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_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';
/PHP-5.5/ext/snmp/
H A Dconfig.m48 PHP_ARG_WITH(openssl-dir,OpenSSL dir for SNMP,
9 [ --with-openssl-dir[=DIR] SNMP: openssl install prefix], no, no)
/PHP-5.5/ext/standard/tests/file/
H A Dfile_get_contents_variation8-win32.phpt34 "/no/such/file/dir" => "/no/such/file/dir",
89 -- Filename: /no/such/file/dir --
91 Warning: file_get_contents(/no/such/file/dir): failed to open stream: No such file or directory in …
H A Dfile_get_contents_file_put_contents_variation2.phpt20 $dir = "file_get_contents_variation2";
21 mkdir($file_path."/".$dir);
22 $filename = $file_path."/".$dir."/"."file_get_contents_variation2.tmp";
24 ini_set( 'include_path',$file_path."/".$dir );
H A Dreadfile_variation10-win32.phpt33 "/no/such/file/dir" => "/no/such/file/dir",
80 -- Filename: /no/such/file/dir --
82 Warning: readfile(/no/such/file/dir): failed to open stream: No such file or directory in %s on lin…
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 --
/PHP-5.5/ext/filter/tests/
H A D015.phpt12 'http://www.example/img/dir/',
13 'http://www.example/img/dir',
57 string(27) "http://www.example/img/dir/"
58 string(26) "http://www.example/img/dir"
/PHP-5.5/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.5/ext/zip/tests/
H A Doo_getnameindex.phpt23 $zip->addFromString('dir/entry2d.txt', 'entry #2');
46 string(15) "dir/entry2d.txt"
/PHP-5.5/win32/build/
H A Dconfutils.js1416 dir = dir.replace(new RegExp("/", "g"), "\\");
1463 srcs_line = dir + "\\" + src;
1634 var i, dir, bd, last;
1638 dir = get_define("BUILD_DIR");
1642 if (!FSO.FolderExists(dir)) {
1643 FSO.CreateFolder(dir);
2232 if (dir.length > 0 && dir.substr(dir.length - 1) != '/' && dir.substr(dir.length - 1) != '\\') {
2233 dir += '/';
2235 dir = dir.replace(new RegExp("/", "g"), "\\");
2241 isdir = FSO.FolderExists(dir + src);
[all …]
/PHP-5.5/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.5/main/streams/
H A Dplain_wrapper.c847 DIR *dir = (DIR*)stream->abstract; in php_plain_files_dirstream_read() local
888 DIR *dir = NULL; in php_plain_files_dir_opener() local
901 dir = VCWD_OPENDIR(path); in php_plain_files_dir_opener()
904 if (!dir) { in php_plain_files_dir_opener()
908 if (dir && dir->finished) { in php_plain_files_dir_opener()
909 closedir(dir); in php_plain_files_dir_opener()
910 dir = NULL; in php_plain_files_dir_opener()
913 if (dir) { in php_plain_files_dir_opener()
916 closedir(dir); in php_plain_files_dir_opener()
1175 dir += sizeof("file://") - 1; in php_plain_files_mkdir()
[all …]

Completed in 84 milliseconds

12345678910>>...22