Home
last modified time | relevance | path

Searched refs:fragment (Results 1 – 25 of 28) sorted by last modified time

12

/PHP-5.5/sapi/cli/
H A Dphp_http_parser.c859 MARK(fragment); in php_http_parser_execute()
882 MARK(fragment); in php_http_parser_execute()
900 CALLBACK(fragment); in php_http_parser_execute()
905 CALLBACK(fragment); in php_http_parser_execute()
912 CALLBACK(fragment); in php_http_parser_execute()
1554 CALLBACK_NOCLEAR(fragment); in php_http_parser_execute()
/PHP-5.5/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.5/ext/standard/
H A Durl.c56 if (theurl->fragment) in php_url_free()
57 efree(theurl->fragment); in php_url_free()
223 char *query, *fragment; in php_url_parse_ex() local
226 fragment = memchr(s, '#', (ue - s)); in php_url_parse_ex()
228 if (query && fragment) { in php_url_parse_ex()
229 if (query > fragment) { in php_url_parse_ex()
230 e = fragment; in php_url_parse_ex()
236 } else if (fragment) { in php_url_parse_ex()
237 e = fragment; in php_url_parse_ex()
415 if (resource->fragment != NULL) RETVAL_STRING(resource->fragment, 1); in PHP_FUNCTION()
[all …]
H A Durl.h31 char *fragment; member
/PHP-5.5/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt314 ["fragment"]=>
436 ["fragment"]=>
453 ["fragment"]=>
470 ["fragment"]=>
489 ["fragment"]=>
506 ["fragment"]=>
523 ["fragment"]=>
542 ["fragment"]=>
667 ["fragment"]=>
707 ["fragment"]=>
H A Dparse_url_variation_002_32bit.phpt106 ["fragment"]=>
126 ["fragment"]=>
H A Dparse_url_variation_002_64bit.phpt106 ["fragment"]=>
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_error_002.phpt39 ["fragment"]=>
H A Dbug68917.phpt15 [fragment] => c=d
22 [fragment] => c=d
/PHP-5.5/ext/standard/tests/strings/
H A Durl_t.phpt382 ["fragment"]=>
504 ["fragment"]=>
521 ["fragment"]=>
538 ["fragment"]=>
557 ["fragment"]=>
574 ["fragment"]=>
591 ["fragment"]=>
610 ["fragment"]=>
735 ["fragment"]=>
775 ["fragment"]=>
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>"
/PHP-5.5/ext/soap/
H A Dphp_http.c561 if (phpurl->fragment) { in make_http_soap_request()
563 smart_str_appends(&soap_headers, phpurl->fragment); in make_http_soap_request()
758 if (phpurl->fragment) { in make_http_soap_request()
760 smart_str_appends(&soap_headers, phpurl->fragment); in make_http_soap_request()
1202 if (phpurl->fragment) phpurl->fragment = estrdup(phpurl->fragment); in make_http_soap_request()
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2100 This code fragment shows a typical straightforward call to pcre_com-
3513 subpattern" is used for a fragment of a pattern that picks out a sub-
5593 For example, the fragment \ba matches "a" at the start of a word.
6798 applies only at the level of the condition. This pattern fragment is an
6844 This makes the fragment independent of the parentheses in the larger
9463 Consider the pattern fragment
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic3503 # This is KOMPAS 2D drawing or fragment of drawing but is not detailed nor
3507 # Extension is CDW for drawing and FRW for fragment of drawing
7134 >8244 lelong x fragment size %d,
7151 >&-1324 lelong x fragment size %d,
7171 >&-1324 lelong x fragment size %d,
7194 >8244 belong x fragment size %d,
7211 >&-1324 belong x fragment size %d,
7231 >&-1324 belong x fragment size %d,
7753 >24 lelong x \b fragment size %u,
/PHP-5.5/ext/dom/tests/
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
H A DDOMDocumentFragment_appendXML_error_001.phpt10 $fragment = new DOMDocumentFragment();
11 $fragment->appendXML();
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_error_003.phpt14 $fragment = $document->createDocumentFragment();
15 @$fragment->appendXML('<foo>is<bar>great</foo>');
16 $root->appendChild($fragment);
H A DDOMDocumentFragment_construct_error_001.phpt10 $fragment = new DOMDocumentFragment("root");
H A DDOMDocumentFragment_appendXML_hasChildNodes_basic.phpt9 $fragment = $doc->createDocumentFragment();
10 if ($fragment->hasChildNodes()) {
15 $fragment->appendXML('<foo>bar</foo>');
16 if ($fragment->hasChildNodes()) {
/PHP-5.5/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.5/build/
H A Dlibtool.m44383 # Same as above, but a single script fragment to be evaled but not shown.
/PHP-5.5/
H A DREADME.TESTING2110 FRAGMENT The fragment section of a url (after #)
H A DNEWS4111 . Fixed bug #54180 (parse_url() incorrectly parses path when ? in fragment).
5364 - Fixed bug #50073 (parse_url() incorrect when ? in fragment). (Ilia)
6666 - Fixed bug #46521 (Curl ZTS OpenSSL, error in config.m4 fragment).
9377 - Fixed bug #34478 (Incorrect parsing of url's fragment (#...)). (Dmitry)
9606 - Fixed bug #32615 (Segfault in replaceChild() using fragment when

Completed in 148 milliseconds

12