Home
last modified time | relevance | path

Searched refs:dir (Results 326 – 350 of 514) sorted by relevance

1...<<1112131415161718192021

/PHP-5.3/
H A Dserver-tests.php150 $d = dir($src);
799 foreach ($this->test_dirs as $dir) {
800 if (is_dir($dir)) {
801 $this->findFilesInDir($dir, ($dir == 'ext'));
803 $this->test_files[] = $dir;
836 function findFilesInDir($dir,$is_ext_dir=FALSE,$ignore=FALSE) argument
839 $o = opendir($dir) or $this->error("cannot open directory: $dir");
842 if (is_dir("$dir/$name")) {
847 $this->findFilesInDir("$dir/$name", FALSE, $ignore || $skip_ext);
852 @unlink("$dir/$name");
[all …]
H A Dmakerpm70 --with-exec-dir=/usr/bin \
88 --with-exec-dir=/usr/bin \
124 - Fix config dir.
/PHP-5.3/ext/pdo_dblib/
H A Dconfig.w327 /* if they pointed us to a freetds dir, pick that up,
25 /* if they pointed us to a freetds dir, pick that up,
/PHP-5.3/ext/standard/tests/file/
H A Dstat_variation1-win32.phpt17 /* test the effects of rename() on stats of dir/file */
24 mkdir("$file_path/stat_variation1/"); // temp dir
H A Dfile_get_contents_error.phpt18 print( file_get_contents("/no/such/file/or/dir") );
53 Warning: file_get_contents(/no/such/file/or/dir): failed to open stream: No such file or directory …
H A Dreadfile_variation9.phpt53 $dir = $allDirs[$i];
55 $ok = readfile($dir.'/'.$theFile);
H A Drename_variation8-win32.phpt25 // rename a existing dir to new name
35 // try to rename an non_existing dir
H A Drename_variation8.phpt25 // rename a existing dir to new name
35 // try to rename an non_existing dir
H A Dfiletype_variation2.phpt19 dir, block, link, file, and unknown.
H A Dfiletype_variation3.phpt19 dir, block, link, file, and unknown.
H A Dfile_get_contents_variation8.phpt32 "/no/such/file/dir",
78 Warning: file_get_contents(/no/such/file/dir): failed to open stream: %s in %s on line %d
H A D005_basic.phpt29 echo "*** Testing the basic functionality with dir ***\n";
48 *** Testing the basic functionality with dir ***
/PHP-5.3/ext/phar/tests/tar/files/
H A Dmake.dangerous.tar.php.inc149 * @param string $dir
151 function mkdir($dir)
153 $this->addFile($dir, "", array(
H A Dcorrupt_tarmaker.php.inc156 * @param string $dir
158 function mkdir($dir)
160 $this->addFile($dir, "", array(
/PHP-5.3/ext/standard/tests/dir/
H A Dchdir_error2.phpt7 * Source code: ext/standard/dir.c
H A Dgetcwd_basic.phpt7 * Source code: ext/standard/dir.c
H A Dgetcwd_error.phpt7 * Source code: ext/standard/dir.c
H A Dreaddir_variation7.phpt7 * Source code: ext/standard/dir.c
H A Dscandir_variation8.phpt5 /* Prototype : array scandir(string $dir [, int $sorting_order [, resource $context]])
7 * Source code: ext/standard/dir.c
/PHP-5.3/ext/phar/tests/
H A Dphar_buildfromdirectory2.phpt29 RecursiveDirectoryIterator::__construct(1): failed to open dir: No such file or directory
/PHP-5.3/ext/pdo/tests/
H A Dpdo_016.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
9 require_once $dir . 'pdo_test.inc';
H A Dpdo_016a.phpt6 $dir = getenv('REDIR_TEST_DIR');
7 if (false == $dir) die('skip no driver');
8 require_once $dir . 'pdo_test.inc';
/PHP-5.3/win32/build/
H A Dconfig.w32.phpize.in83 ARG_ENABLE('object-out-dir', 'Alternate location for binary objects during build', '');
160 ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no");
203 // set up the build dir and DLL name
235 // Find the php_build dir - it contains headers and libraries
237 …p.net/internals/windows/libs). Assumes that it is a sibling of this source dir (..\\deps) if not s…
320 STDOUT.WriteLine("Build dir: " + get_define('BUILD_DIR'));
335 /* default is as a sibling of the php_build dir */
/PHP-5.3/ext/gd/libgd/
H A Dgdft.c353 char *name, *path=NULL, *dir; local
391 for (dir = strtok (path, PATHSEPARATOR); dir; dir = strtok (0, PATHSEPARATOR)) {
392 if (!strcmp(dir, ".")) {
395 dir = VCWD_GETCWD(cur_dir, MAXPATHLEN);
397 dir = VCWD_GETWD(cur_dir);
399 if (!dir) {
405 snprintf(fullname, sizeof(fullname) - 1, "%s/%s%s", dir, name, ext); \
/PHP-5.3/ext/standard/
H A Dfile.c846 char *dir, *prefix; in PHP_FUNCTION() local
857 if (strlen(dir) != dir_len) { in PHP_FUNCTION()
869 if (php_check_open_basedir(dir TSRMLS_CC)) { in PHP_FUNCTION()
1398 if (php_check_open_basedir(dir TSRMLS_CC)) { in php_mkdir_ex()
1409 PHPAPI int php_mkdir(char *dir, long mode TSRMLS_DC) in php_mkdir() argument
1411 return php_mkdir_ex(dir, mode, REPORT_ERRORS TSRMLS_CC); in php_mkdir()
1419 char *dir; in PHP_FUNCTION() local
1430 if (strlen(dir) != dir_len) { in PHP_FUNCTION()
1444 char *dir; in PHP_FUNCTION() local
1453 if (strlen(dir) != dir_len) { in PHP_FUNCTION()
[all …]

Completed in 56 milliseconds

1...<<1112131415161718192021