Home
last modified time | relevance | path

Searched refs:root (Results 251 – 275 of 291) sorted by last modified time

1...<<1112

/PHP-5.5/ext/dom/tests/
H A DDOMCharacterData_replaceData_error_001.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
15 $root->appendChild($cdata);
H A DDOMComment_appendData_basic_Sullivan.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($comment);
37 <root><comment><!--data><&"--></comment></root>
H A DDOMCharacterData_insertData_error_001.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
15 $root->appendChild($cdata);
H A DDOMCharacterData_substringData_basic_001.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($cdata);
H A DDOMDocumentFragment_appendXML_error_003.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
16 $root->appendChild($fragment);
H A DDOMDocumentFragment_construct_error_001.phpt10 $fragment = new DOMDocumentFragment("root");
15 #0 %s(%d): DOMDocumentFragment->__construct('root')
/PHP-5.5/ext/dom/
H A Dnode.c1460 xmlNodePtr root = node; in PHP_FUNCTION() local
1462 while (root->parent != NULL) { in PHP_FUNCTION()
1463 root = root->parent; in PHP_FUNCTION()
1465 node->ns = xmlNewNs(root, ns->href, ns->prefix); in PHP_FUNCTION()
H A Ddocument.c296 xmlNode *root; in dom_document_document_element_read() local
308 root = xmlDocGetRootElement(docp); in dom_document_document_element_read()
309 if (!root) { in dom_document_document_element_read()
1296 xmlNodePtr nodep = NULL, root; in PHP_FUNCTION() local
1310 root = xmlDocGetRootElement(docp); in PHP_FUNCTION()
1311 if (root != NULL) { in PHP_FUNCTION()
1912 xmlNodePtr root; in PHP_FUNCTION() local
1929 root = (xmlNodePtr) docp->children; in PHP_FUNCTION()
1930 while(root && root->type != XML_ELEMENT_NODE && root->type != XML_XINCLUDE_START) { in PHP_FUNCTION()
1931 root = root->next; in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/com_dotnet/tests/
H A Dbug39606.phpt12 $root = dirname($arEnv['COMSPEC']);
13 $typelib = $root.'\activeds.tlb';
/PHP-5.5/ext/bcmath/tests/
H A Dbcsqrt_error1.phpt2 bcsqrt — Get the square root of an arbitrary precision number
13 Warning: bcsqrt(): Square root of negative number in %s.php on line %d
/PHP-5.5/Zend/
H A Dzend_gc.h187 static zend_always_inline void gc_remove_from_buffer(gc_root_buffer *root TSRMLS_DC) in gc_remove_from_buffer()
189 root->next->prev = root->prev; in gc_remove_from_buffer()
190 root->prev->next = root->next; in gc_remove_from_buffer()
191 root->prev = GC_G(unused); in gc_remove_from_buffer()
192 GC_G(unused) = root; in gc_remove_from_buffer()
H A DZEND_CHANGES190 methods of the same name from different root interfaces.
/PHP-5.5/Zend/tests/
H A Dgc_015.phpt2 GC 015: Object as root of cycle
H A Dbug63055.phpt5 /* the default gc root size is 10,000 */
H A Dbug34199.phpt7 $xml = "<root></root>";
H A Dbug39297.phpt36 $root = new MyTree();
38 $root[$id] = $child;
40 var_dump(compareByRef($root[$id], $child));
/PHP-5.5/
H A DREADME.RELEASE_PROCESS38 - Checkout the pecl directory, most likely you want a sparse-root checkout
H A DREADME.TESTING20 "tests" directory under source root directory.
26 under the source root (parallel builds will not work). Therefore you
61 from the source root and any subdirectories below. If there are files,
H A DREADME.TESTING247 3. run tests over http, copying test files into document root
H A DNEWS2827 . Fixed bug #61835 (php-fpm is not allowed to run as root). (fat)
2832 for non-root start). (fat)
5052 - Fixed bug #51688 (ini per dir crashes when invalid document root are given).
7596 - Fixed bug #41063 (chdir doesn't like root paths). (Dmitry)
7666 - Fixed bug #40560 (DIR functions do not work on root UNC path). (Dmitry)
7670 is in root dir). (Marcus)
7842 - Fixed bug #40274 (Sessions fail with numeric root keys). (Ilia)
8533 in root dir). (Tony)
8873 . Added class SplFileInfo as root class for DirectoryIterator and
H A DINSTALL768 line as root user and start it manually - you will see there are no
1124 default it's private and owned by the root user.
1128 root we'll use the sudo command to open it (as root) so for example
1176 6. Locate or set the DocumentRoot This is the root directory for all
1619 The Apache web server changes the directory to root at startup,
1620 causing PHP to attempt to read php.ini from the root filesystem if
1662 working its way up to the current document root (as set in
1664 document root, only its directory is scanned.
1813 [mybox:user /src/php5] root# apachectl configtest apachectl:
1957 [mybox:user /src/php5] root# apachectl configtest
[all …]
/PHP-5.5/ext/tidy/tests/
H A D028.phpt10 var_dump($x->root()->getParent());
/PHP-5.5/ext/spl/tests/
H A Dbug54971.phpt11 <root>
14 </root>
/PHP-5.5/ext/simplexml/tests/
H A Dbug69169.phpt10 <root a="b">
17 </root>';
H A Dprofile05.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->children('reserved')->child;

Completed in 83 milliseconds

1...<<1112