Home
last modified time | relevance | path

Searched refs:method (Results 101 – 125 of 702) sorted by relevance

12345678910>>...29

/PHP-5.5/ext/sybase_ct/tests/
H A Dtest_msghandler.phpt17 echo 'Static method: '; sybase_set_messagehandler_ex(array('sybase', 'static_handler'));
18 echo 'Instance method: '; sybase_set_messagehandler_ex(array(new sybase(), 'handler'));
31 Static method: bool(true)
32 Instance method: bool(true)
/PHP-5.5/Zend/tests/
H A Dbug38220.phpt25 function __call($method, $args) {
30 echo "before call $method\n";
32 call_user_func_array(array($drv, $method), $args);
33 echo "after call $method\n";
H A Dbug20242.phpt15 echo "method\n";
21 method
H A Derrmsg_001.phpt2 errmsg: Non-abstract method must contain body
16 Fatal error: Non-abstract method Impl::Foo() must contain body in %s on line %d
H A Derrmsg_014.phpt2 errmsg: cannot call __clone() method on objects
17 Fatal error: Cannot call __clone() method on objects - use 'clone $obj' instead in %s on line %d
H A Derrmsg_005.phpt2 errmsg: can't use method return value in write context
18 Fatal error: Can't use method return value in write context in %s on line %d
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_constructor_error1.phpt41 echo "\nNo method given:\n";
47 echo "\nClass and Method in same string, bad method name:\n";
68 exception 'ReflectionException' with message 'Invalid method name 1' in %s
73 exception 'ReflectionException' with message 'Invalid method name 3' in %s
87 No method given:
88 exception 'ReflectionException' with message 'Invalid method name TestClass' in %s
92 Class and Method in same string, bad method name:
H A DReflectionClass_getExtensionName_basic.phpt2 ReflectionClass::getExtensionName() method - basic test for getExtensionName() method
H A Dbug67068.phpt6 public function method() {}
10 $reflector = new \ReflectionMethod($object, 'method');
H A Dbug33312.phpt11 $method = $class->getMethod('bar');
13 foreach ($method->getParameters() as $parameter) {
H A D010.phpt2 ReflectionMethod::__toString() tests (overriden method)
19 Method [ <user, overwrites Foo, prototype Foo> public method func ] {
H A DReflectionClass_getExtension_basic.phpt2 ReflectionClass::getExtension() method - basic test for getExtension() method
/PHP-5.5/scripts/dev/generate-phpt/src/setup/preconditions/
H A DgtIsValidMethod.php14 foreach($methods as $method) {
15 if($clo->getOption('m') == $method->getName()) {
/PHP-5.5/ext/standard/tests/array/
H A Darray_intersect_ukey_variation9.phpt28 echo "\n-- Testing array_intersect_ukey() function using class with static method as callback --\n";
32 echo "\n-- Testing array_intersect_uassoc() function using class with regular method as callback --…
40 -- Testing array_intersect_ukey() function using class with static method as callback --
54 -- Testing array_intersect_uassoc() function using class with regular method as callback --
/PHP-5.5/ext/openssl/tests/
H A Dopenssl_digest_basic.phpt8 $method = "md5";
11 var_dump(openssl_digest($data, $method));
/PHP-5.5/ext/intl/tests/
H A Dcalendar_getErrorCode_getErrorMessage_basic.phpt38 Warning: IntlCalendar::fieldDifference(): intlcal_field_difference: Call to ICU method has failed i…
41 string(81) "intlcal_field_difference: Call to ICU method has failed: U_ILLEGAL_ARGUMENT_ERROR"
42 string(81) "intlcal_field_difference: Call to ICU method has failed: U_ILLEGAL_ARGUMENT_ERROR"
/PHP-5.5/ext/standard/tests/class_object/
H A Dmethod_exists_basic_001.phpt38 foreach ($methods as $method) {
39 echo "Does C::$method exist? ";
40 var_dump(method_exists("C", $method));
45 foreach ($methods as $method) {
46 echo "Does C::$method exist? ";
47 var_dump(method_exists($myC, $method));
/PHP-5.5/Zend/tests/traits/
H A Dinheritance002.phpt2 Trait method overriddes base class method
H A Derror_013.phpt2 Trying to use static as method modifier
19 Fatal error: Cannot use 'static' as method modifier in %s on line %d
H A Derror_012.phpt2 Trying to access a protected trait method
19 Fatal error: Call to protected method bar::test() from context '' in %s on line %d
H A Dinheritance001.phpt2 Trait method overwridden by a method defined in the class.
/PHP-5.5/ext/openssl/
H A Dxp_ssl.c436 SSL_METHOD *method; in php_openssl_setup_crypto() local
451 switch (cparam->inputs.method) { in php_openssl_setup_crypto()
454 method = SSLv23_client_method(); in php_openssl_setup_crypto()
462 method = SSLv2_client_method(); in php_openssl_setup_crypto()
471 method = SSLv3_client_method(); in php_openssl_setup_crypto()
476 method = TLSv1_client_method(); in php_openssl_setup_crypto()
488 method = SSLv3_server_method(); in php_openssl_setup_crypto()
497 method = SSLv2_server_method(); in php_openssl_setup_crypto()
502 method = TLSv1_server_method(); in php_openssl_setup_crypto()
779 switch (sock->method) { in php_openssl_tcp_sockop_accept()
[all …]
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_variation.phpt51 echo "Reset the name of the callback routine to a class method and check that it works\n";
58 echo "Reset callback options to use a class method \n";
65 echo "Reset callback options to use an object method \n";
93 Reset the name of the callback routine to a class method and check that it works
99 Reset callback options to use a class method
110 Strict Standards: Non-static method c1::assert() should not be called statically in %s on line 53
114 Reset callback options to use an object method
/PHP-5.5/ext/pdo/tests/
H A Dpdo_037.phpt2 Crash when calling a method of a class that inherits PDOStatement
19 Fatal error: Call to undefined method MyStatement::foo() in %s on line %d
/PHP-5.5/ext/spl/tests/
H A Dbug60201.phpt6 $method = new ReflectionMethod('SplFileObject', 'setCsvControl');
7 $params = $method->getParameters();

Completed in 36 milliseconds

12345678910>>...29