Home
last modified time | relevance | path

Searched refs:uri (Results 226 – 250 of 258) sorted by relevance

1234567891011

/PHP-5.3/ext/soap/tests/bugs/
H A Dbug30994.phpt41 $x = new SoapServer(NULL, array("uri"=>"http://spock/kunta/kunta"));
H A Dbug36629.phpt14 $server = new soapserver(null,array('uri'=>"http://testuri.org"));
H A Dbug39815.phpt36 'uri'=>'http://testuri.org',
H A Dbug47273.phpt33 'uri' => "http://127.0.0.1:8080/test/",
H A Dbug41566.phpt25 $server = new soapserver(null,array('uri'=>"http://testuri.org", 'soap_version'=>SOAP_1_2));
/PHP-5.3/ext/soap/tests/
H A Dserver024.phpt26 $server = new soapserver(null,array('uri'=>"http://testuri.org"));
H A Dserver029.phpt31 $server = new soapserver(null,array('uri'=>"http://testuri.org"));
H A Dtypemap005.phpt49 'uri' => "http://schemas.nothing.com",
H A Dtypemap006.phpt44 'uri' => "http://schemas.nothing.com",
H A Dserver010.phpt15 $server = new soapserver(null,array('uri'=>"http://testuri.org"));
H A Dserver009.phpt23 $server = new soapserver(null,array('uri'=>"http://testuri.org"));
H A Dsetheaders.phpt7 $client = new SoapClient(NULL, array("location"=>"test://","uri"=>"test://",
/PHP-5.3/ext/dom/
H A Dphp_dom.h109 xmlNsPtr dom_get_ns(xmlNodePtr node, char *uri, int *errorcode, char *prefix);
H A Dnode.c120 ZEND_ARG_INFO(0, uri)
1602 char *uri; in PHP_FUNCTION() local
1604 …rs(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_node_class_entry, &uri, &uri_len) == FAILU… in PHP_FUNCTION()
1630 if (lookupp != NULL && (nsptr = xmlSearchNsByHref(lookupp->doc, lookupp, uri))) { in PHP_FUNCTION()
1652 char *uri; in PHP_FUNCTION() local
1654 …rs(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_node_class_entry, &uri, &uri_len) == FAILU… in PHP_FUNCTION()
1665 if (nsptr && xmlStrEqual(nsptr->href, uri)) { in PHP_FUNCTION()
H A Dphp_dom.c1625 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1630 if (! ((prefix && !strcmp (prefix, "xml") && strcmp(uri, (char *)XML_XML_NAMESPACE)) || in dom_get_ns()
1631 (prefix && !strcmp (prefix, "xmlns") && strcmp(uri, (char *)DOM_XMLNS_NAMESPACE)) || in dom_get_ns()
1632 (prefix && !strcmp(uri, (char *)DOM_XMLNS_NAMESPACE) && strcmp (prefix, "xmlns")))) { in dom_get_ns()
1633 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()
/PHP-5.3/sapi/apache/
H A Dmod_php5.c293 …PHP_SELF", &((request_rec *) SG(server_context))->uri, strlen(((request_rec *) SG(server_context))… in sapi_apache_register_server_variables()
294 …php_register_variable("PHP_SELF", ((request_rec *) SG(server_context))->uri, track_vars_array TSRM… in sapi_apache_register_server_variables()
533 SG(request_info).request_uri = r->uri; in init_request_info()
/PHP-5.3/ext/soap/tests/schema/
H A Dschema064.phpt42 …OAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsd="http:/…
/PHP-5.3/sapi/continuity/
H A Dcapi.c415 char *uri = lstFset_get(NSG(t->vars), "uri"); in capi_request_ctor() local
423 SG(request_info).request_uri = capi_strdup(uri); in capi_request_ctor()
/PHP-5.3/sapi/apache2handler/
H A Dphp_functions.c152 ADD_STRING(uri); in PHP_FUNCTION()
484 ZEND_ARG_INFO(0, uri)
/PHP-5.3/ext/soap/
H A Dsoap.c1320 if (service->uri == NULL) { in PHP_METHOD()
1322 service->uri = estrdup(service->sdl->target_ns); in PHP_METHOD()
1325 service->uri = estrdup("http://unknown-uri/"); in PHP_METHOD()
2924 zval **uri; local
2933 call_uri = Z_STRVAL_PP(uri);
3054 uri = Z_STRVAL_PP(tmp);
3919 ns = encode_add_ns(body, uri);
3956 ns = encode_add_ns(param, uri);
4409 ns = encode_add_ns(body, uri);
5056 if (service->uri) {
[all …]
/PHP-5.3/sapi/apache_hooks/
H A Dphp_apache.c73 ZEND_ARG_INFO(0, uri)
305 apache_request_string_slot(offsetof(request_rec, uri), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
1308 PHP_FALIAS(uri, apache_request_uri, NULL)
1868 if (rr->uri) { in PHP_FUNCTION()
1869 add_property_string(return_value,"uri", rr->uri, 1); in PHP_FUNCTION()
/PHP-5.3/
H A Dserver-tests.php1248 …$uri = $this->conf['TEST_BASE_SCRIPT_NAME'].str_replace($this->conf['TEST_BASE_PATH'], '', $tmp_fi…
1249 $uri = str_replace('\\', '/', $uri);
1306 $url .= $uri;
/PHP-5.3/ext/standard/tests/file/
H A Dfopen_variation14.phpt2 Test fopen() function : variation: file uri, no use include path
H A Dfopen_variation15.phpt2 Test fopen() function : variation: file uri, use include path = true
/PHP-5.3/ext/curl/
H A Dinterface.c180 php_url *uri; in php_curl_option_url()
182 if (!(uri = php_url_parse_ex(url, len))) { in php_curl_option_url()
187 if (uri->scheme && !strncasecmp("file", uri->scheme, sizeof("file"))) { in php_curl_option_url()
189 php_url_free(uri); in php_curl_option_url()
192 php_url_free(uri); in php_curl_option_url()

Completed in 113 milliseconds

1234567891011