Home
last modified time | relevance | path

Searched refs:method (Results 626 – 650 of 702) sorted by relevance

1...<<212223242526272829

/PHP-5.5/ext/date/tests/
H A DDateTime_data-spring-type3-type2.inc4 * Note: test names match method names in a set of PHPUnit tests
H A DDateTime_data-spring-type2-type2.inc4 * Note: test names match method names in a set of PHPUnit tests
/PHP-5.5/ext/com_dotnet/
H A DREADME21 method on a null object and cause a fatal php error.
H A Dcom_handlers.c367 static int com_call_method(const char *method, INTERNAL_FUNCTION_PARAMETERS) in com_call_method() argument
390 …if (SUCCESS == php_com_do_invoke_byref(obj, (char*)method, -1, DISPATCH_METHOD|DISPATCH_PROPERTYGE… in com_call_method()
/PHP-5.5/ext/hash/tests/
H A Dhash_hmac_file_basic.phpt10 * Description: Generate a keyed hash value using the HMAC method and the contents of a given file
/PHP-5.5/sapi/apache/
H A Dphp_apache.c483 if (rr->method) { in PHP_FUNCTION()
484 add_property_string(return_value,"method", (char *)rr->method, 1); in PHP_FUNCTION()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_get_warnings.phpt69 printf("[012] Object mysqli_warning seems to lack method next()\n");
/PHP-5.5/ext/snmp/tests/
H A Dsnmp-object-error.phpt91 Warning: main(): Unknown SNMP value retrieval method '67' in %s on line %d
/PHP-5.5/sapi/cgi/
H A DREADME.FastCGI19 This is the simplest method, obviously you will have to configure your
20 web server appropriately. Some web servers may also not support this method,
/PHP-5.5/ext/filter/docs/
H A Dfilter.txt305 * static method with *array('classname', 'methodname')*
306 * dynamic method with *array(&$this, 'methodname')*
313 callback CALLBACK mixed Calls the callback function/method with the input
/PHP-5.5/ext/spl/
H A Dspl_iterators.c844 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_recursive_it_get_method()
846 …if (zend_hash_find(&Z_OBJCE_P(zobj)->function_table, method, method_len+1, (void **) &function_han… in spl_recursive_it_get_method()
849 …function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_… in spl_recursive_it_get_method()
1289 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_dual_it_get_method()
1291 …if (zend_hash_find(&intern->inner.ce->function_table, method, method_len+1, (void **) &function_ha… in spl_dual_it_get_method()
1294 …function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_… in spl_dual_it_get_method()
1304 int spl_dual_it_call_method(char *method, INTERNAL_FUNCTION_PARAMETERS) in spl_dual_it_call_method() argument
1316 ZVAL_STRING(&func, method, 0); in spl_dual_it_call_method()
1317 if (!zend_is_callable(&func, 0, &method TSRMLS_CC)) { in spl_dual_it_call_method()
1318 …_docref(NULL TSRMLS_CC, E_ERROR, "Method %s::%s() does not exist", intern->inner.ce->name, method); in spl_dual_it_call_method()
[all …]
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch442 + hc->method = METHOD_UNKNOWN;
530 - hc->method = METHOD_UNKNOWN;
655 + if (hc->method != METHOD_UNKNOWN)
695 if ( hc->method == METHOD_HEAD )
697 else if ( hc->method == METHOD_GET )
721 if ( hc->method == METHOD_GET || hc->method == METHOD_POST )
756 if ( hc->method == METHOD_HEAD )
767 - hc->method = METHOD_HEAD;
892 - httpd_method_str( hc->method ), url, hc->protocol,
900 - httpd_method_str( hc->method ), url, hc->protocol,
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dstr_replace_variation3.phpt36 The error can be avoided by choosing the __toString magix method as follows: */
H A Ducfirst.phpt60 The error can be avoided by choosing the __toString magix method as follows: */
H A Dlcfirst.phpt89 The error can be avoided by choosing the __toString magix method as follows: */
/PHP-5.5/ext/snmp/
H A Dsnmp.c317 ZEND_ARG_INFO(0, method)
1760 long method; in PHP_FUNCTION() local
1762 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &method) == FAILURE) { in PHP_FUNCTION()
1766 if (method >= 0 && method <= (SNMP_VALUE_LIBRARY|SNMP_VALUE_PLAIN|SNMP_VALUE_OBJECT)) { in PHP_FUNCTION()
1767 SNMP_G(valueretrieval) = method; in PHP_FUNCTION()
1770 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown SNMP value retrieval method '%ld'", method); in PHP_FUNCTION()
/PHP-5.5/
H A Dserver-tests.php353 $method = trim($this->options['method'])?strtoupper(trim($this->options['method'])):'GET';
1290 $method = isset($request['method'])?$request['method']:$havepost?'POST':'GET';
1294 $options['method']=$method;
H A DREADME.STREAMS229 php_stream_ops structure, which holds the "virtual method table" for the
235 method is intended to be used for streams if there is an underlying method
/PHP-5.5/Zend/
H A DREADME.ZEND_VM8 method). As in most PHP applications raw execution speed isn't the limiting
H A Dzend_API.c3080 zval **method = NULL; in zend_is_callable_ex() local
3086 zend_hash_index_find(Z_ARRVAL_P(callable), 1, (void **) &method); in zend_is_callable_ex()
3088 if (obj && method && in zend_is_callable_ex()
3091 Z_TYPE_PP(method) == IS_STRING) { in zend_is_callable_ex()
3097 *callable_name_len = Z_STRLEN_PP(obj) + Z_STRLEN_PP(method) + sizeof("::") - 1; in zend_is_callable_ex()
3103 memcpy(ptr, Z_STRVAL_PP(method), Z_STRLEN_PP(method) + 1); in zend_is_callable_ex()
3127 … *callable_name_len = fcc->calling_scope->name_length + Z_STRLEN_PP(method) + sizeof("::") - 1; in zend_is_callable_ex()
3133 memcpy(ptr, Z_STRVAL_PP(method), Z_STRLEN_PP(method) + 1); in zend_is_callable_ex()
3142 ret = zend_is_callable_check_func(check_flags, *method, fcc, strict_class, error TSRMLS_CC); in zend_is_callable_ex()
/PHP-5.5/ext/curl/
H A Dmulti.c247 if (ch->handlers->write->method == PHP_CURL_RETURN) { in PHP_FUNCTION()
/PHP-5.5/sapi/apache2filter/
H A Dphp_functions.c119 ADD_STRING(method); in PHP_FUNCTION()
/PHP-5.5/ext/xml/
H A Dxml.c533 zval **method; in xml_call_handler() local
539 zend_hash_index_find(Z_ARRVAL_P(handler), 1, (void **) &method) == SUCCESS && in xml_call_handler()
541 Z_TYPE_PP(method) == IS_STRING) { in xml_call_handler()
542 …RMLS_CC, E_WARNING, "Unable to call handler %s::%s()", Z_OBJCE_PP(obj)->name, Z_STRVAL_PP(method)); in xml_call_handler()
/PHP-5.5/ext/spl/internal/
H A Dmultipleiterator.inc141 * their next() method regardless of their state.
/PHP-5.5/sapi/apache_hooks/
H A DREADME86 method

Completed in 104 milliseconds

1...<<212223242526272829