Home
last modified time | relevance | path

Searched refs:func (Results 51 – 75 of 170) sorted by relevance

1234567

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_call_user_func.phpt63 print "Call user func, procedural, using references for everything\n";
91 print "Call user func, object oriented, using references for everything\n";
119 …print "Call user func, object oriented, using variable for types. using references for bound param…
175 print "Call user func, procedural, using references for everything but using variable for types\n";
339 Call user func, procedural, using references for everything
342 Call user func, object oriented, using references for everything
345 Call user func, object oriented, using variable for types. using references for bound parameter
348 Call user func, object oriented, using constant for types. using references for bound parameter
351 Call user func, procedural, using references for everything but using variable for types
354 Call user func, procedural, using references for bound parameter, using variables for resource and …
[all …]
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug29830.phpt20 foreach($functions as $func) {
21 echo $func . "\n";
/PHP-5.5/ext/standard/tests/general_functions/
H A Dis_callable_variation1.phpt19 foreach($functions as $func) {
21 var_dump( is_callable($func) ); //given only $var argument
22 var_dump( is_callable($func, TRUE) ); //given $var and $syntax argument
23 var_dump( is_callable($func, TRUE, $callable_name) );
25 var_dump( is_callable($func, FALSE) ); //given $var and $syntax argument
26 var_dump( is_callable($func, FALSE, $callable_name) );
/PHP-5.5/Zend/tests/generators/
H A Dyield_in_parenthesis.phpt14 func(yield $foo);
15 $foo->func(yield $foo);
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Dbcmath.h96 #define _PROTOTYPE(func, args) func args argument
98 #define _PROTOTYPE(func, args) func() argument
/PHP-5.5/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-5.5/ext/spl/
H A Dspl_engine.h55 zend_function *func = pce->constructor; in spl_instantiate_arg_n() local
63 ZVAL_STRING(&z_name, func->common.function_name, 0); in spl_instantiate_arg_n()
76 fcc.function_handler = func; in spl_instantiate_arg_n()
/PHP-5.5/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-5.5/Zend/tests/
H A Dbug63741.phpt12 static function func ()
35 ClassToLoad::func();
H A Dbug64966.phpt8 function test($func) {
9 $a = $func("");
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.phpt21 public function func() {
28 function func() {
47 func();
51 $sample_obj->func();
H A Dbug52193.phpt21 $func = function(){ return 'just a test'; };
23 array_splice($items, 0 , 4, $func);
H A Dobject_handlers.phpt16 function __call($func, $args) {
17 $GLOBALS["y"] = $func;
19 static function __callStatic($func, $args) {
20 $GLOBALS["y"] = $func;
/PHP-5.5/ext/intl/timezone/
H A Dtimezone_class.cpp63 const char *func TSRMLS_DC) in timezone_convert_to_datetimezone()
73 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()
134 const char *func TSRMLS_DC) in timezone_process_timezone_argument()
153 "properly constructed", func); in timezone_process_timezone_argument()
162 spprintf(&message, 0, "%s: could not clone TimeZone", func); in timezone_process_timezone_argument()
176 outside_error, func TSRMLS_CC); in timezone_process_timezone_argument()
185 "valid UTF-8 string", func); in timezone_process_timezone_argument()
194 spprintf(&message, 0, "%s: could not create time zone", func); in timezone_process_timezone_argument()
[all …]
H A Dtimezone_class.h62 …t_to_datetimezone(const TimeZone *timeZone, intl_error *outside_error, const char *func TSRMLS_DC);
63 …ezone_process_timezone_argument(zval **zv_timezone, intl_error *error, const char *func TSRMLS_DC);
/PHP-5.5/ext/reflection/tests/
H A DReflectionFunction_getClosure_error.phpt18 $func = new ReflectionFunction( 'foo' );
19 $closure = $func->getClosure('bar');
/PHP-5.5/ext/phar/phar/
H A Ddirectorytreeiterator.inc48 function __call($func, $params)
50 return call_user_func_array(array($this->getSubIterator(), $func), $params);
/PHP-5.5/ext/spl/examples/
H A Ddirectorytreeiterator.inc48 function __call($func, $params)
50 return call_user_func_array(array($this->getSubIterator(), $func), $params);
H A Dsearchiterator.inc52 function __call($func, $params)
54 return call_user_func_array(array($this->getInnerIterator(), $func), $params);
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DAPI28 # void onig_set_warn_func(OnigWarnFunc func)
37 1 func: function pointer. void (*func)(char* warning_message)
40 # void onig_set_verb_warn_func(OnigWarnFunc func)
48 1 func: function pointer. void (*func)(char* warning_message)
335 error: func's return value.
339 2 func: callback function.
342 if func does not return 0, then iteration is stopped.
343 3 arg: argument for func.
402 error: callback func's return value.
413 3 func: callback function.
[all …]
/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp44 BreakIterator *(*func)(const Locale&, UErrorCode&), in _breakiter_factory()
66 biter = func(Locale::createFromName(locale_str), status); in _breakiter_factory()
196 int32_t (BreakIterator::*func)(), in _breakiter_no_args_ret_int32() argument
212 int32_t res = (bio->biter->*func)(); in _breakiter_no_args_ret_int32()
219 int32_t (BreakIterator::*func)(int32_t), in _breakiter_int32_ret_int32()
244 int32_t res = (bio->biter->*func)((int32_t)arg); in _breakiter_int32_ret_int32()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregposix.c271 int (*func)(const unsigned char*, const unsigned char*,int,int*,regex_t*,void*); member
282 return (*warg->func)(name, name_end, ng, gs, warg->reg, warg->arg); in i_wrapper()
287 int (*func)(const unsigned char*, const unsigned char*,int,int*,regex_t*,void*), in reg_foreach_name()
292 warg.func = func; in reg_foreach_name()

Completed in 41 milliseconds

1234567