/PHP-8.3/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">…
|
H A D | bug47925.phpt | 29 ['pid' => $pid, 'uri' => $uri] = http_server([$server_response]); 30 $client = new SoapClient(NULL, ['location' => $uri, 'uri' => $uri]);
|
/PHP-8.3/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.3/ext/dom/tests/ |
H A D | gh12870.inc | 3 function test(?string $uri, string $qualifiedName) { 4 $uri_readable = is_null($uri) ? 'NULL' : "\"$uri\""; 9 $attr = $d->createAttributeNS($uri, $qualifiedName); 21 … var_dump($attr === $d->documentElement->getAttributeNodeNS($uri, $parts[count($parts) - 1]));
|
/PHP-8.3/ext/dom/ |
H A D | domimplementation.c | 58 xmlURIPtr uri; in PHP_METHOD() local 81 uri = xmlParseURI(name); in PHP_METHOD() 82 if (uri != NULL && uri->opaque != NULL) { in PHP_METHOD() 83 localname = xmlStrdup((xmlChar *) uri->opaque); in PHP_METHOD() 86 xmlFreeURI(uri); in PHP_METHOD() 98 if (uri) { in PHP_METHOD() 99 xmlFreeURI(uri); in PHP_METHOD() 126 char *uri = NULL, *name = NULL; in PHP_METHOD() local 130 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!sO!", &uri, &uri_len, &name, &name_len, &node, dom_… in PHP_METHOD() 151 && ((nsptr = xmlNewNs(NULL, (xmlChar *) uri, (xmlChar *) prefix)) == NULL) in PHP_METHOD()
|
/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | pdo_mysql___construct_uri.phpt | 22 $uri = 'uri:file://' . $file; 30 $db = new PDO($uri, $user, $pass); 33 $uri, $dsn, 46 $db = new PDO($uri, $user, $pass); 49 $uri, $dsn,
|
/PHP-8.3/ext/ldap/tests/ |
H A D | ldap_sasl_bind_basic.phpt | 12 $link = @fsockopen($uri); 21 $link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version); 25 $link = ldap_connect($uri); 33 $link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version);
|
H A D | ldap_exop_passwd.phpt | 13 $link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version); 22 test_bind($uri, "cn=userA,$base", $genpw, $protocol_version), 24 test_bind($uri, "cn=userA,$base", "newPassword", $protocol_version) 31 $link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version);
|
/PHP-8.3/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 | http_response_header_01.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 17 $f = 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 | 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 | gh8641.phpt | 25 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 27 $f = file_get_contents($uri, 0, $ctx);
|
H A D | bug80838.phpt | 16 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 26 $fd = fopen($uri, 'rb', false, $ctx);
|
/PHP-8.3/ext/standard/tests/network/ |
H A D | http-stream.phpt | 16 ['pid' => $pid, 'uri' => $uri] = http_server([__DIR__."/news.rss"]); 19 $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.3/ext/simplexml/tests/ |
H A D | bug79971_1.phpt | 16 $uri = "file://$path/bug79971_1.xml"; 17 var_dump(simplexml_load_file("$uri%00foo")); 19 $sxe = simplexml_load_file($uri); 20 var_dump($sxe->asXML("$uri.out%00foo"));
|
/PHP-8.3/ext/xmlwriter/ |
H A D | php_xmlwriter.c | 106 xmlURI *uri; in _xmlwriter_get_valid_file_path() local 111 uri = xmlCreateURI(); in _xmlwriter_get_valid_file_path() 112 if (uri == NULL) { in _xmlwriter_get_valid_file_path() 119 if (uri->scheme != NULL) { in _xmlwriter_get_valid_file_path() 123 xmlFreeURI(uri); in _xmlwriter_get_valid_file_path() 134 xmlFreeURI(uri); in _xmlwriter_get_valid_file_path() 152 xmlFreeURI(uri); in _xmlwriter_get_valid_file_path() 162 xmlFreeURI(uri); in _xmlwriter_get_valid_file_path() 172 xmlFreeURI(uri); in _xmlwriter_get_valid_file_path() 286 char *name, *prefix, *uri; in PHP_FUNCTION() local [all …]
|
/PHP-8.3/ext/soap/tests/ |
H A D | custom_content_type.phpt | 31 'uri' => 'misc-uri', 47 if (strpos($headers, 'Multipart/Related; action="misc-uri#foo"') === FALSE) 57 'uri' => 'misc-uri', 73 if (strpos($headers, 'Content-Type: application/soap+xml; charset=utf-8; action="misc-uri#foo"') ==…
|