Home
last modified time | relevance | path

Searched refs:code (Results 126 – 150 of 2678) sorted by relevance

12345678910>>...108

/PHP-7.1/ext/interbase/tests/
H A Dibase_errmsg_001.phpt20 Warning: ibase_query(): Dynamic SQL Error SQL error code = -104 %s on line %d
21 string(%d) "Dynamic SQL Error SQL error code = -104 %s"
/PHP-7.1/ext/standard/tests/general_functions/
H A Dhighlight_heredoc.phpt19 <code><span style="color: #000000">
21 </code>
/PHP-7.1/Zend/tests/
H A Dbug71248.phpt19 $code = <<<'PHP'
24 eval($code);
/PHP-7.1/tests/lang/
H A Dbug71897.phpt13 Warning: Unexpected character in input: '%s' (ASCII=127) state=0 in %s(%d) : eval()'d code on line…
15 Parse error: syntax error, unexpected 'b' (T_STRING) in %s(%d) : eval()'d code on line %d
/PHP-7.1/sapi/cli/tests/
H A Dbug67429.phpt11 // This creates a new server for each response code
12 foreach ([308, 426] as $code) {
14 http_response_code($code);
H A D009.phpt16 string(57) "Either execute direct code, process stdin or use a file.
18 string(57) "Either execute direct code, process stdin or use a file.
/PHP-7.1/ext/json/
H A Djson_scanner.re55 static int php_json_hex_to_int(char code)
57 if (code >= '0' && code <= '9') {
58 return code - '0';
59 } else if (code >= 'A' && code <= 'F') {
60 return code - ('A' - 10);
61 } else if (code >= 'a' && code <= 'f') {
62 return code - ('a' - 10);
71 int i, code = 0;
74 code |= php_json_hex_to_int(*(pc--)) << (i * 4);
76 return code;
/PHP-7.1/ext/com_dotnet/
H A Dcom_misc.c32 void php_com_throw_exception(HRESULT code, char *message) in php_com_throw_exception() argument
36 message = php_win32_error_to_msg(code); in php_com_throw_exception()
40 zend_throw_exception(php_com_exception_class_entry, message, (zend_long)(uint32_t)code); in php_com_throw_exception()
42 zend_throw_exception(php_com_exception_class_entry, message, (zend_long)code); in php_com_throw_exception()
/PHP-7.1/ext/soap/tests/soap12/
H A Dsoap12-test.inc115 function validateCountryCode($code) {
116 if (strlen($code) != 2) {
117 …Not a valid country code", NULL, NULL, NULL, new SoapHeader("http://example.org/ts-tests", "valida…
/PHP-7.1/ext/intl/tests/
H A Dsymfony_format_type_int64_intl8.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_double_intl1.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeDoubleIntl
14 // execute the code from #testFormatTypeDoubleIntl
H A Dsymfony_format_type_double_intl2.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeDoubleIntl
14 // execute the code from #testFormatTypeDoubleIntl
H A Dsymfony_format_type_double_intl3.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeDoubleIntl
14 // execute the code from #testFormatTypeDoubleIntl
H A Dsymfony_format_type_double_intl4.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeDoubleIntl
14 // execute the code from #testFormatTypeDoubleIntl
H A Dsymfony_format_type_int32_intl4.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt32Intl
14 // execute the code from #testFormatTypeInt32Intl
H A Dsymfony_format_type_int32_intl5.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt32Intl
14 // execute the code from #testFormatTypeInt32Intl
H A Dsymfony_format_type_int64_intl1.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_int64_intl2.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_int64_intl3.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_int64_intl4.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_int64_intl5.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_int64_intl6.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
H A Dsymfony_format_type_int64_intl7.phpt9 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
14 // execute the code from #testFormatTypeInt64Intl
/PHP-7.1/Zend/tests/generators/finally/
H A Dfinally_ran_on_close.phpt15 echo "code after finally\n";
19 echo "code after second finally\n";
/PHP-7.1/sapi/litespeed/
H A Dlsapilib.h194 int LSAPI_ErrResponse_r( LSAPI_Request * pReq, int code, const char ** pRespHeaders,
197 static inline int LSAPI_SetRespStatus_r( LSAPI_Request * pReq, int code ) in LSAPI_SetRespStatus_r() argument
201 pReq->m_respHeader.m_respInfo.m_status = code; in LSAPI_SetRespStatus_r()
345 static inline int LSAPI_SetRespStatus( int code ) in LSAPI_SetRespStatus() argument
346 { return LSAPI_SetRespStatus_r( &g_req, code ); } in LSAPI_SetRespStatus()
348 static inline int LSAPI_ErrResponse( int code, const char ** pRespHeaders, const char * pBody, int … in LSAPI_ErrResponse() argument
349 { return LSAPI_ErrResponse_r( &g_req, code, pRespHeaders, pBody, bodyLen ); } in LSAPI_ErrResponse()

Completed in 40 milliseconds

12345678910>>...108