Home
last modified time | relevance | path

Searched refs:call (Results 51 – 75 of 399) sorted by relevance

12345678910>>...16

/PHP-8.1/Zend/tests/
H A Dclosure_060.phpt2 runtime cache must be invalidated for Closure::call()
18 $closure->call(new class(){}, null);
H A Dbug68475.phpt18 // Test basic call using Class::method syntax.
29 // Test call with args.
32 // Test call with splat operator.
H A Dmagic_methods_001.phpt13 print "call\n";
43 call
H A Ddynamic_call_to_ref_returning_function.phpt2 When performing a dynamic call to a ret-by-ref function, the reference should be unwrapped
18 var_dump($closure->call(new class {}, 42));
/PHP-8.1/Zend/tests/traits/
H A Dno_static_arg_binding.phpt9 public static function call() {
24 C::call();
/PHP-8.1/ext/mysqli/tests/
H A D052.phpt2 call statement after close
14 * statement call after close
/PHP-8.1/ext/soap/tests/bugs/
H A Dbug77141.phpt25 $soap->call(1.1);
29 …xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:call><param0 xsi:type="xsd:float">1.1</param0></ns…
/PHP-8.1/tests/output/
H A Dob_start_basic_006.phpt2 ob_start(): ensure multiple buffer initialization with a single call using arrays is not supported …
13 return "f[call:$i; len:$len] - $string\n";
27 return "C::g[call:$i; len:$len] - $string\n";
34 return "C::h[call:$i; len:$len; id:$this->id] - $string\n";
115 C::h[call:1; len:37; id:originalID] - bool(true)
121 C::h[call:2; len:37; id:changedID] - bool(true)
/PHP-8.1/tests/func/
H A D004.phpt27 echo "Returned from function call...\n";
31 echo "Returned from function call...\n";
54 Returned from function call...
63 Returned from function call...
/PHP-8.1/ext/intl/tests/
H A Ddateformat_set_timezone_id2.phpt42 $res_str .= "\nAfter call to set_timezone_id : timezone_id= $timezone_id";
68 After call to set_timezone_id : timezone_id= America/New_York
73 After call to set_timezone_id : timezone_id= America/Los_Angeles
78 After call to set_timezone_id : timezone_id= America/Chicago
83 After call to set_timezone_id : timezone_id= America/Chicago
H A Ddateformat_set_timezone_id3.phpt43 $res_str .= "\nAfter call to set_timezone_id : timezone_id= $timezone_id";
69 After call to set_timezone_id : timezone_id= America/New_York
74 After call to set_timezone_id : timezone_id= America/Los_Angeles
79 After call to set_timezone_id : timezone_id= America/Chicago
84 After call to set_timezone_id : timezone_id= America/Chicago
H A Ddateformat_set_timezone_id_icu72-1.phpt42 $res_str .= "\nAfter call to set_timezone_id : timezone_id= $timezone_id";
68 After call to set_timezone_id : timezone_id= America/New_York
73 After call to set_timezone_id : timezone_id= America/Los_Angeles
78 After call to set_timezone_id : timezone_id= America/Chicago
83 After call to set_timezone_id : timezone_id= America/Chicago
/PHP-8.1/ext/opcache/tests/jit/
H A Dreg_alloc_002.phpt14 public function process($call) {
17 $call($i++, "xxx");
/PHP-8.1/ext/standard/tests/array/
H A Darray_shift_variation5.phpt2 Test array_shift() function : usage variations - call recursively
6 * Use the result of one call to array_shift
7 * as the $stack argument of another call to array_shift()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_vm_helpers.c177 zend_function *fbc = call->func; in zend_jit_deprecated_helper()
190 zend_vm_stack_free_args(call); in zend_jit_deprecated_helper()
193 OBJ_RELEASE(Z_OBJ(call->This)); in zend_jit_deprecated_helper()
196 zend_vm_stack_free_call_frame(call); in zend_jit_deprecated_helper()
462 if (call->prev_execute_data) { in zend_jit_trace_record_fake_init_call_ex()
469 func = call->func; in zend_jit_trace_record_fake_init_call_ex()
931 prev_call = EX(call);
999 if (EX(call) != prev_call) {
1000 if (EX(call)
1014 func = EX(call)->func;
[all …]
/PHP-8.1/ext/calendar/tests/
H A Dunixtojd.phpt12 // putenv (basic_functions.c) does call tzset() when the env var being put is 'TZ'
13 // -adding a call direct to GetEnvironmentVariableA just before tzset() is called to check the…
14 // putting a call to date_default_timezone_set() here doesn't help
17 // -since putenv() is written to call tzset() when env var is TZ, I assume that putenv("TZ=UTC") …
/PHP-8.1/Zend/
H A Dzend_execute_API.c736 zend_execute_data *call; in zend_call_function() local
816 ZEND_CALL_NUM_ARGS(call) = i; in zend_call_function()
818 zend_vm_stack_free_args(call); in zend_call_function()
893 ZEND_CALL_NUM_ARGS(call)++; in zend_call_function()
901 call->prev_execute_data = NULL; in zend_call_function()
903 zend_vm_stack_free_args(call); in zend_call_function()
930 ZEND_OBSERVER_FCALL_BEGIN(call); in zend_call_function()
931 zend_execute_ex(call); in zend_call_function()
937 EG(current_execute_data) = call; in zend_call_function()
949 if (!EG(exception) && call->func) { in zend_call_function()
[all …]
H A Dzend_compile.h562 #define ZEND_CALL_INFO(call) \ argument
563 Z_TYPE_INFO((call)->This)
568 #define ZEND_CALL_KIND(call) \ argument
569 ZEND_CALL_KIND_EX(ZEND_CALL_INFO(call))
587 #define ZEND_CALL_NUM_ARGS(call) \ argument
588 (call)->This.u2.num_args
593 #define ZEND_CALL_VAR(call, n) \ argument
594 ((zval*)(((char*)(call)) + ((int)(n))))
596 #define ZEND_CALL_VAR_NUM(call, n) \ argument
599 #define ZEND_CALL_ARG(call, n) \ argument
[all …]
H A Dzend_execute.c3913 EX(call) = NULL; in i_init_func_execute_data()
4000 EX(call) = NULL; in i_init_code_execute_data()
4239 call = call->prev_execute_data; in zend_unfinished_calls_gc()
4240 } while (call); in zend_unfinished_calls_gc()
4247 zend_execute_data *call = EX(call); in cleanup_unfinished_calls() local
4367 EX(call) = call->prev_execute_data; in cleanup_unfinished_calls()
4369 call = EX(call); in cleanup_unfinished_calls()
4370 } while (call); in cleanup_unfinished_calls()
4503 if (call) { in zend_unfinished_execution_gc_ex()
5192 return call; in _zend_vm_stack_push_call_frame_ex()
[all …]
/PHP-8.1/ext/spl/tests/
H A Dbug73896.phpt6 public static function call($callable, array $args) {
13 Registrator::call('spl_autoload_register', [$this, 'autoload']);
/PHP-8.1/ext/standard/tests/mail/
H A Dbug73203.phpt5 only function besides mb_send_mail() which allows to call php_escape_shell_cmd()
7 verify that the call succeeds.
/PHP-8.1/ext/xsl/tests/
H A Dxsltprocessor_registerPHPFunctions-funcundef.phpt4 The XSL script tries to call a php function that is not defined
23 Warning: XSLTProcessor::transformToXml(): Unable to call handler undefinedfunc() in %s on line %d
/PHP-8.1/ext/phar/tests/
H A Dphar_oo_001.phpt50 string(50) "Cannot call method on an uninitialized Phar object"
51 string(29) "Cannot call constructor twice"
/PHP-8.1/Zend/tests/type_declarations/
H A Dstrict_nested.phpt22 public function call() {
34 public function call() {
/PHP-8.1/ext/curl/tests/
H A Dcurl_setopt_error.phpt10 echo "*** curl_setopt() call with incorrect parameters\n";
33 *** curl_setopt() call with incorrect parameters

Completed in 94 milliseconds

12345678910>>...16