Home
last modified time | relevance | path

Searched refs:recursive (Results 26 – 50 of 80) sorted by relevance

1234

/PHP-5.5/ext/standard/tests/file/
H A Dmkdir-003.phpt2 recursive mkdir() tests
H A Dmkdir_variation4.phpt7 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
27 $recursive = false;
116 $h = mkdir($pathname, $mode, $recursive, $value);
H A Dmkdir_rmdir_error.phpt5 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Dmkdir_variation5.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_variation1-win32.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_variation1.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_rmdir_variation2.phpt21 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Dmkdir_variation5-win32.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_variation2.phpt7 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug69793.phpt2 Bug #69793: Remotely triggerable stack exhaustion via recursive method calls
/PHP-5.5/ext/dom/tests/
H A Dbug43364.phpt2 Bug #43364 (recursive xincludes don't remove internal xml nodes properly)
/PHP-5.5/ext/spl/examples/
H A Ddirectoryfilterdots.inc18 * and makes it recursive. Further more it filters the entries '.' and '..'.
H A Drecursivedualiterator.inc13 * @brief Synchronous iteration over two recursive iterators
H A Ddualiterator.inc163 * And if both do then a recursive comparison is being used.
/PHP-5.5/tests/classes/
H A Dautoload_018.phpt2 Ensure __autoload() allows for recursive calls if the class name differs.
/PHP-5.5/ext/spl/internal/
H A Drecursivearrayiterator.inc13 * @brief A recursive array iterator
H A Drecursivecachingiterator.inc13 * @brief Cached recursive iteration over another Iterator
H A Drecursivefilteriterator.inc13 * @brief Iterator to filter recursive iterators
H A Drecursiveiteratoriterator.inc13 * @brief Iterates through recursive iterators
/PHP-5.5/ext/standard/
H A Dphp_array.h107 PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC);
/PHP-5.5/ext/ftp/
H A Dftp.h162 char** ftp_list(ftpbuf_t *ftp, const char *path, int recursive TSRMLS_DC);
H A Dphp_ftp.c121 ZEND_ARG_INFO(0, recursive)
690 zend_bool recursive = 0; in PHP_FUNCTION() local
692 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|b", &z_ftp, &dir, &dir_len, &recursive) =… in PHP_FUNCTION()
699 if (NULL == (llist = ftp_list(ftp, dir, recursive TSRMLS_CC))) { in PHP_FUNCTION()
/PHP-5.5/ext/simplexml/
H A Dsimplexml.c1451 static void sxe_add_namespaces(php_sxe_object *sxe, xmlNodePtr node, zend_bool recursive, zval *ret… in sxe_add_namespaces() argument
1467 if (recursive) { in sxe_add_namespaces()
1471 sxe_add_namespaces(sxe, node, recursive, return_value TSRMLS_CC); in sxe_add_namespaces()
1482 zend_bool recursive = 0; in SXE_METHOD() local
1486 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &recursive) == FAILURE) { in SXE_METHOD()
1498 sxe_add_namespaces(sxe, node, recursive, return_value TSRMLS_CC); in SXE_METHOD()
1516 if (recursive) { in sxe_add_registered_namespaces()
1519 sxe_add_registered_namespaces(sxe, node, recursive, return_value TSRMLS_CC); in sxe_add_registered_namespaces()
1531 zend_bool recursive = 0, from_root = 1; in SXE_METHOD() local
1535 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|bb", &recursive, &from_root) == FAILURE) { in SXE_METHOD()
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c1337 if (md->recursive != NULL) /* Not recursing => FALSE */ in match()
1345 if (md->recursive != NULL) in match()
1352 condition = recno == md->recursive->group_num; in match()
1498 md->recursive == NULL && in match()
1766 for (ri = md->recursive; ri != NULL; ri = ri->prevrec) in match()
1775 new_recursive.prevrec = md->recursive; in match()
1776 md->recursive = &new_recursive; in match()
1811 md->recursive = new_recursive.prevrec; in match()
1848 md->recursive = &new_recursive; in match()
1854 md->recursive = new_recursive.prevrec; in match()
[all …]
/PHP-5.5/ext/dom/
H A Dnode.c1434 long recursive = 0; in PHP_FUNCTION() local
1436 …s(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|l", &id, dom_node_class_entry, &recursive) == FAILURE) { in PHP_FUNCTION()
1442 node = xmlDocCopyNode(n, n->doc, recursive); in PHP_FUNCTION()
1450 if (n->type == XML_ELEMENT_NODE && recursive == 0) { in PHP_FUNCTION()

Completed in 56 milliseconds

1234