Home
last modified time | relevance | path

Searched refs:response (Results 1 – 25 of 160) sorted by last modified time

1234567

/PHP-7.0/win32/
H A Dsendmail.c65 #define SMTP_ERROR_RESPONSE(response) { \ argument
66 if (response && error_message) { \
67 …if (NULL != (*error_message = ecalloc(1, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response)))) { \
68 …or_message, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response), SMTP_ERROR_RESPONSE_SPEC, respons…
70 efree(response); \
H A Dinstall.txt1793 response status can be sent with header(). If only GET and POST methods
/PHP-7.0/
H A Dserver-tests.php250 public $response; variable in HTTPRequest
310 $this->response = $match[2];
325 if(strlen($this->response) > 0) return TRUE;
1385 $out = $r->response;
H A Dphp.ini-development780 ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
H A Dphp.ini-production780 ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
/PHP-7.0/sapi/fpm/tests/
H A D019.phpt26 ping.response = pong
H A D020.phpt28 ping.response = pong
H A D021-uds-acl.phpt55 ping.response = pong
H A Dfcgi.inc104 * 'response' => null | string
421 throw new \Exception('Unexpected response type, expecting GET_VALUES_RESULT');
445 * In that case it is possible that a delayed response to a request made by a previous script
497 'response' => null
504 * Blocking call that waits for response to specific request
508 * @return string response body
516 // If we already read the response during an earlier call for different id, just return it
520 return $this->_requests[$requestId]['response'];
531 // but still not get the response requested
541 $this->_requests[$resp['requestId']]['response'] .= $resp['content'];
[all …]
H A D007.phpt24 ping.response = pong
H A D008.phpt37 ping.response = pong-dynamic
46 ping.response = pong-on-demand
53 ping.response = pong-static
H A D009.phpt19 ping.response = pong
H A D011.phpt19 ping.response = pong
H A D012.phpt21 ping.response = pong
/PHP-7.0/sapi/fpm/
H A Dwww.conf.in252 ; This directive may be used to customize the response of a ping request. The
253 ; response is formatted as text/plain with a 200 response code.
255 ;ping.response = pong
304 ; %s: status (response code)
/PHP-7.0/sapi/cli/tests/
H A Dbug61679.phpt34 // Only echo the first line from the response,
H A Dbug67429.phpt2 FR #67429 (CLI server is missing some new HTTP response codes)
11 // This creates a new server for each response code
/PHP-7.0/ext/xmlrpc/tests/
H A D005.phpt14 $response = xmlrpc_encode(3.24234);
15 echo $response;
17 $response = xmlrpc_encode(-3.24234);
18 echo $response;
20 $response = xmlrpc_encode('Is string');
21 echo $response;
H A D006.phpt25 $response = xmlrpc_decode($xml);
26 echo $response;
H A Dbug37057.phpt7 $response='<?xml version="1.0"?>
23 $retval=xmlrpc_decode($response);
28 $response='<?xml version="1.0"?>
44 $retval=xmlrpc_decode($response);
H A Dbug42736.phpt25 $response = xmlrpc_server_call_method($xml, $Myrequest, null);
27 var_dump($response);
H A D003.phpt14 $response = xmlrpc_encode($params);
15 echo $response;
23 $response = xmlrpc_encode($params);
24 echo $response;
32 $response = xmlrpc_encode($params);
33 echo $response;
H A D004.phpt8 $response = xmlrpc_encode(1);
9 echo $response;
H A D007.phpt25 $response = xmlrpc_decode($xml);
26 echo $response;
/PHP-7.0/ext/xmlrpc/
H A Dxmlrpc-epi-php.c749 XMLRPC_REQUEST response; in decode_request_worker() local
755 response = XMLRPC_REQUEST_FromXML(xml_in, xml_in_len, &opts); in decode_request_worker()
756 if (response) { in decode_request_worker()
759 XMLRPC_to_PHP(XMLRPC_RequestGetData(response), retval); in decode_request_worker()
761 if (XMLRPC_RequestGetRequestType(response) == xmlrpc_request_call) { in decode_request_worker()
763 method_name = XMLRPC_RequestGetMethodName(response); in decode_request_worker()
775 XMLRPC_RequestFree(response, 1); in decode_request_worker()

Completed in 61 milliseconds

1234567