/php-src/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]);
|
H A D | bug61525.phpt | 27 ['pid' => $pid, 'uri' => $uri] = http_server([$server_response]); 28 $client = new SoapClient(NULL, ['location' => $uri, 'uri' => $uri]);
|
/php-src/ext/dom/ |
H A D | namespace_compat.c | 32 #define DECLARE_NS_TOKEN(name, uri) \ argument 34 char val[sizeof(uri)]; \ 36 } decl_##name = { uri, 0.0 }; \ 68 *uri = bucket->key; in php_dom_libxml_ns_mapper_ensure_prefix_map() 100 ZEND_ASSERT(uri != NULL); in dom_create_owned_ns() 107 ns->href = BAD_CAST ZSTR_VAL(uri); in dom_create_owned_ns() 116 if (uri == NULL) { in php_dom_libxml_ns_mapper_get_ns() 117 uri = zend_empty_string; in php_dom_libxml_ns_mapper_get_ns() 169 …n php_dom_libxml_ns_mapper_get_ns_raw_strings_ex(mapper, prefix, strlen(prefix), uri, strlen(uri)); in php_dom_libxml_ns_mapper_get_ns_raw_strings() 177 if (uri == NULL) { in php_dom_libxml_ns_mapper_get_ns_raw_strings_nullsafe() [all …]
|
H A D | domimplementation.c | 60 xmlURIPtr uri; in PHP_METHOD() local 83 uri = xmlParseURI(name); in PHP_METHOD() 84 if (uri != NULL && uri->opaque != NULL) { in PHP_METHOD() 85 localname = xmlStrdup(BAD_CAST uri->opaque); in PHP_METHOD() 88 xmlFreeURI(uri); in PHP_METHOD() 96 if (uri) { in PHP_METHOD() 97 xmlFreeURI(uri); in PHP_METHOD() 159 char *uri = NULL, *name = NULL; in PHP_METHOD() local 186 && ((nsptr = xmlNewNs(NULL, BAD_CAST uri, BAD_CAST prefix)) == NULL) in PHP_METHOD() 257 zend_string *uri = NULL, *qualified_name = zend_empty_string; in PHP_METHOD() local [all …]
|
/php-src/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-src/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-src/ext/soap/tests/SoapClient/ |
H A D | missing-options-non-wsdl-mode.phpt | 35 echo "\$options array only sets \"uri\" option\n"; 36 $options = ['uri' => 'https://example.com']; 51 SoapFault: SoapClient::__construct(): 'location' and 'uri' options are required in nonWSDL mode 52 SoapFault: SoapClient::__construct(): 'location' and 'uri' options are required in nonWSDL mode 54 SoapFault: SoapClient::__construct(): 'uri' option is required in nonWSDL mode 55 SoapFault: SoapClient::__construct(): 'uri' option is required in nonWSDL mode 56 $options array only sets "uri" option
|
/php-src/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-src/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-src/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 | bug73297.phpt | 24 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 26 echo file_get_contents($uri, false, $ctx);
|
H A D | http_response_header_05.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 19 $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 | bug75535.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 19 var_dump(file_get_contents($uri));
|
H A D | http_response_header_04.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 19 $f = file_get_contents($uri);
|
H A D | bug76342.phpt | 20 ['pid' => $pid, 'uri' => $uri] = http_server_sleep(); 23 file_get_contents($uri, false, $ctx);
|
H A D | http_clear_last_response_headers.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 17 $f = file_get_contents($uri);
|
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);
|
/php-src/ext/standard/tests/network/ |
H A D | http-stream.phpt | 17 ['pid' => $pid, 'uri' => $uri] = http_server([__DIR__."/news.rss"]); 20 $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-src/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"));
|