/PHP-7.3/ext/standard/tests/array/ |
H A D | array_intersect_ukey_variation5.phpt | 5 /* Prototype : array array_intersect_ukey(array arr1, array arr2 [, array ...], callback key_compa… 6 …* Description: Computes the intersection of arrays using a callback function on the keys for compa…
|
H A D | array_intersect_ukey_variation7.phpt | 5 /* Prototype : array array_intersect_ukey(array arr1, array arr2 [, array ...], callback key_compa… 6 …* Description: Computes the intersection of arrays using a callback function on the keys for compa…
|
H A D | array_diff_uassoc_variation6.phpt | 5 /* Prototype : array array_diff_uassoc(array arr1, array arr2 [, array ...], callback key_comp_fun… 7 * user supplied callback function
|
H A D | array_map_001.phpt | 2 array_map() and exceptions in the callback
|
H A D | array_intersect_uassoc_variation8.phpt | 5 /* Prototype : array array_intersect_uassoc(array arr1, array arr2 [, array ...], callback key_com… 6 …tes the intersection of arrays with additional index check, compares indexes by a callback function
|
H A D | array_uintersect_assoc_error.phpt | 5 /* Prototype : array array_uintersect_assoc(array arr1, array arr2 [, array ...], callback data_co… 36 Warning: array_uintersect_assoc() expects parameter 4 to be a valid callback, no array or string gi…
|
H A D | array_uintersect_assoc_variation5.phpt | 5 /* Prototype : array array_uintersect_assoc(array arr1, array arr2 [, array ...], callback data_co… 6 … which are present in all the other arguments. Data is compared by using an user-supplied callback.
|
H A D | array_uintersect_variation5.phpt | 5 /* Prototype : array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_… 6 … which are present in all the other arguments. Data is compared by using an user-supplied callback.
|
H A D | array_map_variation18.phpt | 5 /* Prototype : array array_map ( callback $callback , array $arr1 [, array $... ] ) 6 * Description: Applies the callback to the elements of the given arrays 16 function callback($a) 97 var_dump( array_map('callback', $unexpected_inputs[$count]));
|
H A D | array_udiff_assoc_error.phpt | 5 /* Prototype : array array_udiff_assoc(array arr1, array arr2 [, array ...], callback key_comp_fun… 35 Warning: array_udiff_assoc() expects parameter 4 to be a valid callback, no array or string given i…
|
H A D | array_udiff_error.phpt | 5 /* Prototype : array array_udiff(array arr1, array arr2 [, array ...], callback data_comp_func) 35 Warning: array_udiff() expects parameter 4 to be a valid callback, no array or string given in %sar…
|
H A D | array_udiff_uassoc_variation6.phpt | 5 …ay array_udiff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_…
|
H A D | array_uintersect_uassoc_variation6.phpt | 5 …y_uintersect_uassoc(array arr1, array arr2 [, array ...], callback data_compare_func, callback key…
|
H A D | uksort_basic.phpt | 6 * proto bool uksort ( array &$array, callback $cmp_function )
|
/PHP-7.3/ext/filter/tests/ |
H A D | 053.phpt | 2 filter_var() - using callback
|
/PHP-7.3/ext/interbase/ |
H A D | php_ibase_udf.c | 186 zval callback, args[4], return_value; in call_php() local 190 ZVAL_STRING(&callback, name); in call_php() 195 if (!zend_is_callable(&callback, 0, NULL)) { in call_php() 289 &callback, &return_value, argc, args)) { in call_php() 305 zval_ptr_dtor_str(&callback); in call_php()
|
/PHP-7.3/tests/classes/ |
H A D | type_hinting_004.phpt | 11 echo "---> Type hints with callback function:\n"; 50 echo "\n\n---> Type hints with callback static method:\n"; 99 echo "\n\n---> Type hints with callback instance method:\n"; 151 ---> Type hints with callback function: 162 ---> Type hints with callback static method: 173 ---> Type hints with callback instance method:
|
H A D | __call_006.phpt | 46 echo "\n\n---> Invoke __call via callback.\n"; 73 ---> Invoke __call via callback.
|
/PHP-7.3/Zend/tests/ |
H A D | bug48770_2.phpt | 52 Warning: call_user_func_array() expects parameter 1 to be a valid callback, cannot access private m… 54 Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'A' does not have…
|
H A D | class_alias_011.phpt | 2 Testing callback in alias
|
H A D | bug63468.phpt | 2 Bug #63468 (wrong called method as callback with inheritance)
|
/PHP-7.3/ext/standard/tests/assert/ |
H A D | assert_closures.phpt | 2 assert() - basic - accept closures as callback.
|
/PHP-7.3/ext/spl/tests/ |
H A D | spl_007.phpt | 2 SPL: iterator_apply() with callback using __call()
|
/PHP-7.3/ext/readline/ |
H A D | readline.c | 111 ZEND_ARG_INFO(0, callback) 585 zval *callback; in PHP_FUNCTION() local 589 if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "sz", &prompt, &prompt_len, &callback)) { in PHP_FUNCTION() 593 if (!zend_is_callable(callback, 0, NULL)) { in PHP_FUNCTION() 594 zend_string *name = zend_get_callable_name(callback); in PHP_FUNCTION() 605 ZVAL_COPY(&_prepped_callback, callback); in PHP_FUNCTION()
|
/PHP-7.3/tests/output/ |
H A D | ob_start_basic_004.phpt | 12 function callback($string) { 22 ob_start('callback', $cs); 30 ob_start('callback', $cs);
|