Home
last modified time | relevance | path

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

1234567891011

/PHP-7.4/Zend/tests/
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 Dexception_012.phpt9 $func = create_function('', 'define("Mommy", 1); assert(false);');
10 $func();
H A Dbug52193.phpt21 $func = function(){ return 'just a test'; };
23 array_splice($items, 0 , 4, $func);
H A Dget_defined_vars.phpt21 public function func() {
28 function func() {
47 func();
51 $sample_obj->func();
/PHP-7.4/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-7.4/ext/pdo/
H A Dpdo_dbh.c1265 efree(func); in cls_method_dtor()
1274 pefree(func, 1); in cls_method_pdtor()
1282 zend_internal_function func; in pdo_hash_methods() local
1299 memset(&func, 0, sizeof(func)); in pdo_hash_methods()
1305 func.scope = dbh_obj->std.ce; in pdo_hash_methods()
1306 func.prototype = NULL; in pdo_hash_methods()
1328 func.num_args--; in pdo_hash_methods()
1331 func.arg_info = NULL; in pdo_hash_methods()
1332 func.num_args = 0; in pdo_hash_methods()
1333 func.required_num_args = 0; in pdo_hash_methods()
[all …]
/PHP-7.4/ext/reflection/tests/
H A Dbug71767.phpt24 $func = function(
32 $reflectionClosure = new ReflectionFunction($func);
/PHP-7.4/ext/spl/tests/
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-7.4/ext/bcmath/libbcmath/src/
H A Dbcmath.h95 #define _PROTOTYPE(func, args) func args argument
97 #define _PROTOTYPE(func, args) func() argument
/PHP-7.4/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-7.4/ext/standard/tests/array/
H A Darray_walk_closure.phpt20 $func = function($value, $key, &$udata) {
25 var_dump(array_walk($ar, $func, $user_data));
32 $func = function($value, $key) use (&$user_data) {
37 var_dump(array_walk($ar, $func, $user_data));
45 $func = function($value, $key, &$udata) {
50 var_dump(array_walk($ar, $func, $user_data));
/PHP-7.4/ext/standard/tests/general_functions/
H A Dis_callable_variation1.phpt20 foreach($functions as $func) {
22 var_dump( is_callable($func) ); //given only $var argument
23 var_dump( is_callable($func, TRUE) ); //given $var and $syntax argument
24 var_dump( is_callable($func, TRUE, $callable_name) );
26 var_dump( is_callable($func, FALSE) ); //given $var and $syntax argument
27 var_dump( is_callable($func, FALSE, $callable_name) );
/PHP-7.4/ext/intl/timezone/
H A Dtimezone_class.cpp65 const char *func, zval *ret) in timezone_convert_to_datetimezone() argument
74 spprintf(&message, 0, "%s: could not obtain TimeZone id", func); in timezone_convert_to_datetimezone()
95 spprintf(&message, 0, "%s: could not convert id to UTF-8", func); in timezone_convert_to_datetimezone()
104 "%s: DateTimeZone constructor threw exception", func); in timezone_convert_to_datetimezone()
133 const char *func) in timezone_process_timezone_argument() argument
152 "properly constructed", func); in timezone_process_timezone_argument()
162 spprintf(&message, 0, "%s: could not clone TimeZone", func); in timezone_process_timezone_argument()
177 outside_error, func); in timezone_process_timezone_argument()
188 "valid UTF-8 string", func); in timezone_process_timezone_argument()
198 spprintf(&message, 0, "%s: could not create time zone", func); in timezone_process_timezone_argument()
[all …]
H A Dtimezone_class.h69 …_to_datetimezone(const TimeZone *timeZone, intl_error *outside_error, const char *func, zval *ret);
70 TimeZone *timezone_process_timezone_argument(zval *zv_timezone, intl_error *error, const char *func
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c895 sqlite3_do_callback(&func->afunc, &func->func, argc, argv, context, 0); in php_sqlite3_callback_func()
917 sqlite3_do_callback(&func->afini, &func->fini, 0, NULL, context, 1); in php_sqlite3_callback_final()
999 func = (php_sqlite3_func *)ecalloc(1, sizeof(*func)); in PHP_METHOD()
1004 ZVAL_COPY(&func->func, callback_func); in PHP_METHOD()
1012 efree(func); in PHP_METHOD()
1055 func = (php_sqlite3_func *)ecalloc(1, sizeof(*func)); in PHP_METHOD()
1069 efree(func); in PHP_METHOD()
2349 …sqlite3_create_function(intern->db, func->func_name, func->argc, SQLITE_UTF8, func, NULL, NULL, NU… in php_sqlite3_object_free_storage()
2354 if (!Z_ISUNDEF(func->func)) { in php_sqlite3_object_free_storage()
2355 zval_ptr_dtor(&func->func); in php_sqlite3_object_free_storage()
[all …]
/PHP-7.4/Zend/
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 *), zend_bool free_elem…
H A Dzend_object_handlers.c815 && execute_data->func in property_uses_strict_types()
1212 zval *func; in zend_get_parent_private_method() local
1217 if (func != NULL) { in zend_get_parent_private_method()
1218 fbc = Z_FUNC_P(func); in zend_get_parent_private_method()
1261 zend_op_array *func; in zend_get_call_trampoline_func() local
1277 func->arg_flags[0] = 0; in zend_get_call_trampoline_func()
1302 func->num_args = 0; in zend_get_call_trampoline_func()
1304 func->arg_info = 0; in zend_get_call_trampoline_func()
1325 zval *func; in zend_std_get_method() local
1352 fbc = Z_FUNC_P(func); in zend_std_get_method()
[all …]
H A Dzend_stack.c148 ZEND_API void zend_stack_clean(zend_stack *stack, void (*func)(void *), zend_bool free_elements) in zend_stack_clean()
152 if (func) { in zend_stack_clean()
154 func(ZEND_STACK_ELEMENT(stack, i)); in zend_stack_clean()
/PHP-7.4/ext/phar/phar/
H A Ddirectorytreeiterator.inc48 function __call($func, $params)
50 return call_user_func_array(array($this->getSubIterator(), $func), $params);
/PHP-7.4/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp46 BreakIterator *(*func)(const Locale&, UErrorCode&), in _breakiter_factory()
68 biter = func(Locale::createFromName(locale_str), status); in _breakiter_factory()
184 int32_t (BreakIterator::*func)(), in _breakiter_no_args_ret_int32() argument
200 int32_t res = (bio->biter->*func)(); in _breakiter_no_args_ret_int32()
207 int32_t (BreakIterator::*func)(int32_t), in _breakiter_int32_ret_int32()
232 int32_t res = (bio->biter->*func)((int32_t)arg); in _breakiter_int32_ret_int32()
/PHP-7.4/ext/intl/tests/locale/
H A Dbug74993.phpt18 foreach ($funcs as $func) {
19 echo (new ReflectionFunction($func));
/PHP-7.4/
H A D.gdbinit38 set $cv_count = $cv_ex_ptr.func.op_array.last_var
39 set $cv = $cv_ex_ptr.func.op_array.vars
65 set $func = $ex->func
66 if $func
68 if $func->common.scope
69 printf "%s->", $func->common.scope->name->val
74 if $func->common.scope
75 printf "%s::", $func->common.scope->name->val
79 if $func->common.function_name
136 if $func != 0
[all …]

Completed in 76 milliseconds

1234567891011