Home
last modified time | relevance | path

Searched refs:func (Results 76 – 100 of 302) sorted by relevance

12345678910>>...13

/PHP-8.1/Zend/tests/
H A Dns_trailing_comma_01.phpt8 echo "Foo func\n";
29 Foo func
H A Dbug64966.phpt5 function test($func) {
7 $a = $func("");
H A Dbug63741.phpt12 static function func ()
35 ClassToLoad::func();
H A Dbug73663.phpt10 $func = function (&$ref) {
21 $func(list(&$val) = $array);
H A Daccess_modifiers_011.phpt22 public function __call($func, array $args = array())
24 return call_user_func_array(array($this, $func), $args);
H A Dget_defined_vars.phpt17 public function func() {
24 function func() {
43 func();
47 $sample_obj->func();
H A Dbug52193.phpt21 $func = function(){ return 'just a test'; };
23 array_splice($items, 0 , 4, $func);
/PHP-8.1/Zend/
H A Dzend_llist.c164 ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)) in zend_llist_apply_with_del()
171 if (func(element->data)) { in zend_llist_apply_with_del()
179 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func) in zend_llist_apply() argument
184 func(element->data); in zend_llist_apply()
231 ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void … in zend_llist_apply_with_argument() argument
236 func(element->data, arg); in zend_llist_apply_with_argument()
241 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func, int… in zend_llist_apply_with_arguments() argument
248 func(element->data, num_args, args); in zend_llist_apply_with_arguments()
H A Dzend_dtrace.c34 while (ex && (!ex->func || !ZEND_USER_CODE(ex->func->type))) { in dtrace_get_executed_filename()
38 return ZSTR_VAL(ex->func->op_array.filename); in dtrace_get_executed_filename()
H A Dzend_object_handlers.c747 && execute_data->func in property_uses_strict_types()
1181 zval *func; in zend_get_parent_private_method() local
1186 if (func != NULL) { in zend_get_parent_private_method()
1230 zend_op_array *func; in zend_get_call_trampoline_func() local
1263 func->last_var = 0; in zend_get_call_trampoline_func()
1278 func->num_args = 0; in zend_get_call_trampoline_func()
1312 zval *func; in zend_std_get_method() local
1339 fbc = Z_FUNC_P(func); in zend_std_get_method()
1416 if (EXPECTED(func)) { in zend_std_get_static_method()
1417 fbc = Z_FUNC_P(func); in zend_std_get_static_method()
[all …]
H A Dzend_ptr_stack.h39 ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *));
40 ZEND_API void zend_ptr_stack_reverse_apply(zend_ptr_stack *stack, void (*func)(void *));
41 ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), bool free_elements);
/PHP-8.1/Zend/tests/generators/
H A Dyield_in_parenthesis.phpt14 func(yield $foo);
15 $foo->func(yield $foo);
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_call_user_func.phpt59 print "Call user func, procedural, using references for everything\n";
87 print "Call user func, object oriented, using references for everything\n";
115 …print "Call user func, object oriented, using variable for types. using references for bound param…
171 …print "Call user func, procedural, using references for everything but using variable for types\n";
335 Call user func, procedural, using references for everything
338 Call user func, object oriented, using references for everything
341 Call user func, object oriented, using variable for types. using references for bound parameter
344 Call user func, object oriented, using constant for types. using references for bound parameter
347 Call user func, procedural, using references for everything but using variable for types
350 Call user func, procedural, using references for bound parameter, using variables for resource and …
[all …]
/PHP-8.1/ext/spl/tests/
H A Dspl_autoload_008.phpt41 foreach($funcs as $idx => $func)
45 var_dump($func);
47 spl_autoload_register($func);
64 spl_autoload_unregister($func);
H A Diterator_041a.phpt62 static function test($func, $skip = null)
64 echo "===$func===\n";
70 var_dump($func(new MyArrayIterator()));
H A Diterator_041.phpt62 static function test($func, $skip = null)
64 echo "===$func===\n";
70 var_dump($func(new MyArrayIterator()));
H A Diterator_041b.phpt62 static function test($func, $skip = null)
64 echo "===$func===\n";
70 var_dump($func(new MyArrayIterator()));
/PHP-8.1/ext/pdo/
H A Dpdo_dbh.c1214 efree(func); in cls_method_dtor()
1223 pefree(func, 1); in cls_method_pdtor()
1231 zend_internal_function func; in pdo_hash_methods() local
1248 memset(&func, 0, sizeof(func)); in pdo_hash_methods()
1254 func.scope = dbh_obj->std.ce; in pdo_hash_methods()
1255 func.prototype = NULL; in pdo_hash_methods()
1277 func.num_args--; in pdo_hash_methods()
1280 func.arg_info = NULL; in pdo_hash_methods()
1281 func.num_args = 0; in pdo_hash_methods()
1282 func.required_num_args = 0; in pdo_hash_methods()
[all …]
/PHP-8.1/ext/reflection/tests/internal_parameter_default_value/
H A Dcheck_all.phpt18 foreach (get_defined_functions()["internal"] as $func) {
19 $rf = new ReflectionFunction($func);
/PHP-8.1/Zend/tests/return_types/
H A D013.phpt15 var_dump($func=$baz->bar(), $func());
/PHP-8.1/tests/classes/
H A Dabstract_static.phpt23 abstract static function func();
34 … therefore be declared abstract or implement the remaining methods (fail::func) in %sabstract_stat…
/PHP-8.1/ext/standard/tests/array/
H A Darray_walk_closure.phpt12 $func = function($value, $key, &$udata) {
17 var_dump(array_walk($ar, $func, $user_data));
24 $func = function($value, $key) use (&$user_data) {
29 var_dump(array_walk($ar, $func, $user_data));
37 $func = function($value, $key, &$udata) {
42 var_dump(array_walk($ar, $func, $user_data));
/PHP-8.1/Zend/Optimizer/
H A Dzend_call_graph.c50 zend_function *func; in zend_analyze_calls() local
65 func = zend_optimizer_get_called_func( in zend_analyze_calls()
67 if (func) { in zend_analyze_calls()
72 call_info->callee_func = func; in zend_analyze_calls()
80 } else if (func->type == ZEND_INTERNAL_FUNCTION) { in zend_analyze_calls()
83 zend_func_info *callee_func_info = ZEND_FUNC_INFO(&func->op_array); in zend_analyze_calls()
/PHP-8.1/ext/intl/timezone/
H A Dtimezone_class.h67 …_to_datetimezone(const TimeZone *timeZone, intl_error *outside_error, const char *func, zval *ret);
68 TimeZone *timezone_process_timezone_argument(zval *zv_timezone, intl_error *error, const char *func
/PHP-8.1/ext/reflection/tests/
H A Dbug71767.phpt24 $func = function(
38 $reflectionClosure = new ReflectionFunction($func);

Completed in 53 milliseconds

12345678910>>...13