/PHP-8.0/ext/soap/tests/bugs/ |
H A D | bug66112.phpt | 11 …$client=new soapclient(WSDL, array('typemap'=>array(array("type_ns"=>"uri:mist", "type_name"=>"A")… 18 $s = new SoapServer(WSDL, array('typemap'=>array(array("type_ns"=>"uri:mist", "type_name"=>"A")))); 23 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:uri="uri:mist"> 26 <uri:Request><uri:A>XXX</uri:A><uri:B>yyy</uri:B></uri:Request> 35 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="uri:mist">…
|
/PHP-8.0/ext/standard/tests/streams/ |
H A D | stream_get_meta_data_file_variation1.phpt | 48 ["uri"]=> 68 ["uri"]=> 88 ["uri"]=> 108 ["uri"]=> 128 ["uri"]=> 148 ["uri"]=> 168 ["uri"]=> 188 ["uri"]=> 208 ["uri"]=> 228 ["uri"]=> [all …]
|
H A D | bug71323.phpt | 7 $file = 'data:text/plain;z=y;uri=eviluri;mediatype=wut?;mediatype2=hello,somedata'; 17 ["uri"]=> 18 string(72) "data:text/plain;z=y;uri=eviluri;mediatype=wut?;mediatype2=hello,somedata"
|
/PHP-8.0/ext/dom/ |
H A D | domimplementation.c | 63 xmlURIPtr uri; in PHP_METHOD() local 86 uri = xmlParseURI(name); in PHP_METHOD() 87 if (uri != NULL && uri->opaque != NULL) { in PHP_METHOD() 88 localname = xmlStrdup((xmlChar *) uri->opaque); in PHP_METHOD() 91 xmlFreeURI(uri); in PHP_METHOD() 103 if (uri) { in PHP_METHOD() 104 xmlFreeURI(uri); in PHP_METHOD() 131 char *uri = NULL, *name = NULL; in PHP_METHOD() local 135 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!sO!", &uri, &uri_len, &name, &name_len, &node, dom_… in PHP_METHOD() 156 && ((nsptr = xmlNewNs(NULL, (xmlChar *) uri, (xmlChar *) prefix)) == NULL) in PHP_METHOD()
|
/PHP-8.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql___construct_uri.phpt | 21 $uri = 'uri:file://' . $file; 29 $db = new PDO($uri, $user, $pass); 32 $uri, $dsn, 45 $db = new PDO($uri, $user, $pass); 48 $uri, $dsn,
|
/PHP-8.0/ext/standard/tests/http/ |
H A D | bug75981.phpt | 23 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 25 echo @file_get_contents($uri, false, $ctx);
|
H A D | http_response_header_05.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 17 $f = file_get_contents($uri);
|
H A D | http_response_header_04.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 17 $f = file_get_contents($uri);
|
H A D | bug75535.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 17 var_dump(file_get_contents($uri));
|
H A D | bug73297.phpt | 24 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 26 echo file_get_contents($uri, false, $ctx);
|
H A D | http_response_header_01.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 17 $f = file_get_contents($uri);
|
H A D | bug78719.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 18 $stream = fopen($uri, 'r', false, $context);
|
H A D | bug76342.phpt | 20 ['pid' => $pid, 'uri' => $uri] = http_server_sleep(); 23 file_get_contents($uri, false, $ctx);
|
H A D | bug43510.phpt | 16 ['pid' => $pid, 'uri' => $uri ] = http_server($responses, $output); 19 $fd = fopen($uri, $mode, false);
|
H A D | http_response_header_02.phpt | 17 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 19 $f = file_get_contents($uri);
|
H A D | bug80838.phpt | 16 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 26 $fd = fopen($uri, 'rb', false, $ctx);
|
H A D | bug80256.phpt | 21 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 23 var_dump(file_get_contents($uri));
|
H A D | bug79265.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 26 $fd = fopen($uri, 'rb', false, $context);
|
H A D | bug79265_2.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 25 $fd = fopen($uri, 'rb', false, $context);
|
H A D | http_response_header_03.phpt | 17 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 19 $f = file_get_contents($uri);
|
/PHP-8.0/ext/simplexml/tests/ |
H A D | bug79971_1.phpt | 14 $uri = "file://$path/bug79971_1.xml"; 15 var_dump(simplexml_load_file("$uri%00foo")); 17 $sxe = simplexml_load_file($uri); 18 var_dump($sxe->asXML("$uri.out%00foo"));
|
/PHP-8.0/ext/standard/tests/network/ |
H A D | http-stream.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server([__DIR__."/news.rss"]); 18 $e = $d->load("$uri/news.rss");
|
H A D | udp4loop.phpt | 7 $uri = "udp://127.0.0.1:$port"; 8 $server = @stream_socket_server($uri, $errno, $errstr, STREAM_SERVER_BIND); 16 $client = stream_socket_client($uri);
|
/PHP-8.0/ext/soap/tests/ |
H A D | custom_content_type.phpt | 29 'uri' => 'misc-uri', 45 if (strpos($headers, 'Multipart/Related; action="misc-uri#foo"') === FALSE) 55 'uri' => 'misc-uri', 71 if (strpos($headers, 'Content-Type: application/soap+xml; charset=utf-8; action="misc-uri#foo"') ==…
|
/PHP-8.0/sapi/fpm/tests/ |
H A D | bug78599-path-info-underflow.phpt | 32 $uri = $tester->makeSourceFile(); 37 'SCRIPT_FILENAME' => $uri . "/" . str_repeat('A', 35), 41 $uri
|