Searched refs:directory (Results 1 - 25 of 26) sorted by relevance

12

/PHP_TRUNK/ext/openssl/
H A Dopenssl.mak15 # OpenSSL directory
/PHP_TRUNK/ext/phar/phar/
H A Ddirectorytreeiterator.inc13 * @brief DirectoryIterator to generate ASCII graphic directory trees
20 * @param $path directory to iterate
H A Dpharcommand.inc84 'inf' => '<entry> Name of entry to work on (must include PHAR internal directory name if any).'
618 * This function will take a directory and iterate through
622 * @param string $input The input directory
702 * Echo directory
716 * Phar directory operations.
783 * @return string The description of a directory tree for a Phar archive.
787 return "Get a directory tree for a PHAR archive.";
819 echo "|-<root directory>\n";
827 * @return string The description of the command extra to a directory.
831 return "Extract a PHAR package to a directory
[all...]
/PHP_TRUNK/ext/phar/tests/zip/files/
H A Dzipmaker.php.inc53 * Create an internal directory, creating parent directories as needed
/PHP_TRUNK/ext/session/
H A Dmod_files.bat11 ECHO Where ^<basedir^> is the session directory
/PHP_TRUNK/ext/session/tests/
H A Dsave_handler.inc48 $directory = opendir($session_save_path."/");
50 while (($file = readdir($directory)) !== FALSE) {
58 closedir($directory);
/PHP_TRUNK/ext/spl/examples/
H A Dautoload.inc13 * Tries to load class $classname from directory $dir.
32 * current directory of script or include file.
H A Ddirectoryfilterdots.inc23 * @param $path directory to iterate
H A Ddirectorytree.inc13 * @brief A directory iterator that does not show '.' and '..'.
20 * @param $path directory to iterate
H A Ddirectorytreeiterator.inc13 * @brief DirectoryIterator to generate ASCII graphic directory trees
20 * @param $path directory to iterate
H A Dfindfile.inc28 * @param $path the directory to search in
30 * part of it is used as separate directory.
H A Dregexfindfile.inc22 * @param $path the directory to search in
24 * part of it is used as separate directory.
/PHP_TRUNK/ext/standard/tests/file/
H A Dfopen_include_path.inc7 //invalid directory
15 //create the include directory structure
29 //create the include directory structure
45 //create the include directory structure
61 //create the include directory structure
78 // remove the directory structure
87 // remove the directory structure
/PHP_TRUNK/ext/zlib/tests/
H A Dgzopen_include_path.inc7 //invalid directory
15 //create the include directory structure
29 //create the include directory structure
45 //create the include directory structure
61 //create the include directory structure
78 // remove the directory structure
87 // remove the directory structure
/PHP_TRUNK/
H A Dmakerpm123 - Fix rpm build directory for the major distributions.
/PHP_TRUNK/tests/security/
H A Dopen_basedir.inc5 // SAPIs set the working directory differently. So simply creating a directory
6 // relative to the current working directory like this: mkdir("blah") might
12 // For this reason we set the open_basedir to . (current directory) and then
19 function recursive_delete_directory($directory) {
22 if (substr($directory, -1) == '/') {
23 $directory = substr($directory, 0, -1);
26 // Make sure the directory is valid
27 if (is_dir($directory)
[all...]
/PHP_TRUNK/TSRM/
H A Dtsrm_virtual_cwd.c753 int directory = 0; local
785 /* remove '..' and previous directory */
837 /* not a directory */
1007 j = tsrm_realpath_r(path, 0, j, ll, t, 0, is_dir, &directory TSRMLS_CC);
1023 j = tsrm_realpath_r(path, start, i + j, ll, t, use_realpath, is_dir, &directory TSRMLS_CC);
1029 directory = (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
1032 *link_is_dir = directory;
1037 directory = (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
1038 if (is_dir && !directory) {
1039 /* not a directory */
[all...]
/PHP_TRUNK/ext/dom/
H A Ddocument.c1556 char *directory=NULL, resolved_path[MAXPATHLEN]; local
1590 /* If loading from memory, we need to set the base directory for the document */
1593 directory = VCWD_GETCWD(resolved_path, MAXPATHLEN);
1595 directory = VCWD_GETWD(resolved_path);
1597 if (directory) {
1598 if(ctxt->directory != NULL) {
1599 xmlFree((char *) ctxt->directory);
1606 ctxt->directory = (char *) xmlCanonicPath((const xmlChar *) resolved_path);
1647 if (ret && ret->URL == NULL && ctxt->directory != NULL) {
1648 ret->URL = xmlStrdup(ctxt->directory);
[all...]
/PHP_TRUNK/ext/ftp/
H A Dphp_ftp.c78 ZEND_ARG_INFO(0, directory)
93 ZEND_ARG_INFO(0, directory)
98 ZEND_ARG_INFO(0, directory)
115 ZEND_ARG_INFO(0, directory)
120 ZEND_ARG_INFO(0, directory)
436 Returns the present working directory */
459 Changes to the parent directory */
480 /* {{{ proto bool ftp_chdir(resource stream, string directory)
550 /* {{{ proto string ftp_mkdir(resource stream, string directory)
551 Creates a directory an
[all...]
/PHP_TRUNK/ext/pspell/
H A Dpspell.c160 ZEND_ARG_INFO(0, directory)
165 ZEND_ARG_INFO(0, directory)
851 /* {{{ proto bool pspell_config_dict_dir(int conf, string directory)
859 /* {{{ proto bool pspell_config_data_dir(int conf, string directory)
/PHP_TRUNK/ext/libxml/
H A Dlibxml.c592 ADD_NULL_OR_STRING_KEY(directory)
/PHP_TRUNK/ext/xmlreader/
H A Dphp_xmlreader.c297 /* If loading from memory, we need to set the base directory for the document
1055 char *directory=NULL, resolved_path[MAXPATHLEN]; local
1080 /* Get the URI of the current script so that we can set the base directory in libxml */
1082 directory = VCWD_GETCWD(resolved_path, MAXPATHLEN);
1084 directory = VCWD_GETWD(resolved_path);
1086 if (directory) {
/PHP_TRUNK/ext/soap/
H A Dphp_xml.c108 if (ret->URL == NULL && ctxt->directory != NULL) {
109 ret->URL = xmlCharStrdup(ctxt->directory);
158 if (ret->URL == NULL && ctxt->directory != NULL) {
159 ret->URL = xmlCharStrdup(ctxt->directory);
/PHP_TRUNK/win32/build/
H A Dmkdist.php379 function copy_test_dir($directory, $dest)
381 if(substr($directory,-1) == '/') {
382 $directory = substr($directory,0,-1); variable
385 if ($directory == 'tests' || $directory == 'examples') {
389 copy_dir($directory, $dest . '/tests/');
394 if(!file_exists($directory) || !is_dir($directory)) {
395 echo "failed... $directory\
[all...]
/PHP_TRUNK/ext/standard/
H A Dbasic_functions.c937 ZEND_ARG_INFO(0, directory)
947 ZEND_ARG_INFO(0, directory)
952 ZEND_ARG_INFO(0, directory)
5454 _CHECK_PATH(varname, varname_len, "vpopmail.directory")) {

Completed in 84 milliseconds

12