Home
last modified time | relevance | path

Searched refs:fragment (Results 1 – 25 of 26) sorted by relevance

12

/PHP-5.3/ext/standard/tests/url/
H A Dbug54180.phpt2 Bug #54180 (parse_url() incorrectly parses path when ? in fragment)
6 var_dump(parse_url("http://example.com/path/script.html?t=1#fragment?data"));
7 var_dump(parse_url("http://example.com/path/script.html#fragment?data"));
20 ["fragment"]=>
21 string(13) "fragment?data"
30 ["fragment"]=>
31 string(13) "fragment?data"
H A Dparse_url_basic_001.phpt314 ["fragment"]=>
436 ["fragment"]=>
453 ["fragment"]=>
468 ["fragment"]=>
485 ["fragment"]=>
502 ["fragment"]=>
519 ["fragment"]=>
538 ["fragment"]=>
663 ["fragment"]=>
703 ["fragment"]=>
H A Dparse_url_error_002.phpt39 ["fragment"]=>
H A Dparse_url_variation_002_32bit.phpt106 ["fragment"]=>
126 ["fragment"]=>
H A Dparse_url_variation_002_64bit.phpt106 ["fragment"]=>
/PHP-5.3/ext/dom/tests/
H A DDOMDocumentFragment_appendXML_error_002.phpt2 DOMDocumentFragment::appendXML() with unbound fragment.
10 $fragment = new DOMDocumentFragment();
11 $fragment->appendXML('<bait>crankbait</bait>');
12 $document->appendChild($fragment);
H A DDOMDocumentFragment_appendXML_hasChildNodes_basic.phpt9 $fragment = $doc->createDocumentFragment();
10 if ($fragment->hasChildNodes()) {
15 $fragment->appendXML('<foo>bar</foo>');
16 if ($fragment->hasChildNodes()) {
H A DDOMDocumentFragment_construct_basic_002.phpt10 $fragment = new DOMDocumentFragment();
11 $fragment->__construct();
12 var_dump($fragment);
H A DDOMDocumentFragment_appendXML_basic_001.phpt14 $fragment = $document->createDocumentFragment();
15 $fragment->appendXML('<foo id="baz">bar</foo>');
16 $root->appendChild($fragment);
H A DDOMDocumentFragment_appendXML_error_003.phpt14 $fragment = $document->createDocumentFragment();
15 @$fragment->appendXML('<foo>is<bar>great</foo>');
16 $root->appendChild($fragment);
H A DDOMDocumentFragment_construct_basic_001.phpt10 $fragment = new DOMDocumentFragment();
11 var_dump(get_class($fragment));
H A DDOMDocumentFragment_appendXML_error_001.phpt10 $fragment = new DOMDocumentFragment();
11 $fragment->appendXML();
H A DDOMDocumentFragment_construct_error_001.phpt10 $fragment = new DOMDocumentFragment("root");
H A Dbug28721.phpt104 echo "\nAppending fragment to p:\n";
113 echo "\nInserting fragment before t4\n";
286 name (value): #document-fragment ()
292 parent: name (value): #document-fragment ()
297 parent: name (value): #document-fragment ()
307 parent: name (value): #document-fragment ()
311 Appending fragment to p:
365 name (value): #document-fragment ()
402 Inserting fragment before t4
/PHP-5.3/ext/zip/
H A Dzip_stream.c109 char *fragment; in php_zip_ops_stat() local
113 fragment = strchr(path, '#'); in php_zip_ops_stat()
114 if (!fragment) { in php_zip_ops_stat()
123 fragment_len = strlen(fragment); in php_zip_ops_stat()
137 fragment++; in php_zip_ops_stat()
252 char *fragment; in php_stream_zip_opener() local
259 fragment = strchr(path, '#'); in php_stream_zip_opener()
260 if (!fragment) { in php_stream_zip_opener()
268 fragment_len = strlen(fragment); in php_stream_zip_opener()
282 fragment++; in php_stream_zip_opener()
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A Dstrip_tags_basic2.phpt15 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell…
52 string(44) "helloworld<a href="#fragment">Other text</a>"
54 string(44) "helloworld<a href="#fragment">Other text</a>"
60 string(64) "<html><p>hello</p>world<a href="#fragment">Other text</a></html>"
H A Durl_t.phpt348 ["fragment"]=>
460 ["fragment"]=>
476 ["fragment"]=>
490 ["fragment"]=>
506 ["fragment"]=>
522 ["fragment"]=>
538 ["fragment"]=>
556 ["fragment"]=>
666 ["fragment"]=>
702 ["fragment"]=>
/PHP-5.3/ext/standard/
H A Durl.c56 if (theurl->fragment) in php_url_free()
57 efree(theurl->fragment); in php_url_free()
216 char *query, *fragment; in php_url_parse_ex() local
219 fragment = memchr(s, '#', (ue - s)); in php_url_parse_ex()
221 if (query && fragment) { in php_url_parse_ex()
222 if (query > fragment) { in php_url_parse_ex()
223 e = fragment; in php_url_parse_ex()
229 } else if (fragment) { in php_url_parse_ex()
230 e = fragment; in php_url_parse_ex()
412 if (resource->fragment != NULL) RETVAL_STRING(resource->fragment, 1); in PHP_FUNCTION()
[all …]
H A Durl.h31 char *fragment; member
/PHP-5.3/ext/dom/
H A Dnode.c950 …nt(xmlNodePtr nodep, xmlNodePtr prevsib, xmlNodePtr nextsib, xmlNodePtr fragment, dom_object *inte… in _php_dom_insert_fragment() argument
954 newchild = fragment->children; in _php_dom_insert_fragment()
964 nodep->last = fragment->last; in _php_dom_insert_fragment()
966 fragment->last->next = nextsib; in _php_dom_insert_fragment()
967 nextsib->prev = fragment->last; in _php_dom_insert_fragment()
981 if (node == fragment->last) { in _php_dom_insert_fragment()
987 fragment->children = NULL; in _php_dom_insert_fragment()
988 fragment->last = NULL; in _php_dom_insert_fragment()
/PHP-5.3/ext/soap/
H A Dphp_http.c495 if (phpurl->fragment) { in make_http_soap_request()
497 smart_str_appends(&soap_headers, phpurl->fragment); in make_http_soap_request()
689 if (phpurl->fragment) { in make_http_soap_request()
691 smart_str_appends(&soap_headers, phpurl->fragment); in make_http_soap_request()
1128 if (phpurl->fragment) phpurl->fragment = estrdup(phpurl->fragment); in make_http_soap_request()
/PHP-5.3/
H A DREADME.TESTING2110 FRAGMENT The fragment section of a url (after #)
H A DNEWS1060 . Fixed bug #54180 (parse_url() incorrectly parses path when ? in fragment).
2314 - Fixed bug #50073 (parse_url() incorrect when ? in fragment). (Ilia)
3616 - Fixed bug #46521 (Curl ZTS OpenSSL, error in config.m4 fragment).
6327 - Fixed bug #34478 (Incorrect parsing of url's fragment (#...)). (Dmitry)
6556 - Fixed bug #32615 (Segfault in replaceChild() using fragment when
/PHP-5.3/ext/pcre/pcrelib/doc/
H A Dpcre.txt2034 This code fragment shows a typical straightforward call to pcre_com-
3350 subpattern" is used for a fragment of a pattern that picks out a sub-
5263 For example, the fragment \ba matches "a" at the start of a word.
6405 applies only at the level of the condition. This pattern fragment is an
6451 This makes the fragment independent of the parentheses in the larger
8921 Consider the pattern fragment
/PHP-5.3/ext/fileinfo/tests/
H A Dmagic6249 >8244 lelong x fragment size %d,
6266 >&-1324 lelong x fragment size %d,
6286 >&-1324 lelong x fragment size %d,
6309 >8244 belong x fragment size %d,
6326 >&-1324 belong x fragment size %d,
6346 >&-1324 belong x fragment size %d,

Completed in 106 milliseconds

12