Home
last modified time | relevance | path

Searched refs:args (Results 76 – 100 of 542) sorted by relevance

12345678910>>...22

/php-src/ext/spl/tests/
H A Dbug73896.phpt6 public static function call($callable, array $args) {
7 return call_user_func_array($callable, [$args]);
16 public function __call($method, $args) {
H A DarrayObject_magicMethods1.phpt13 $args = func_get_args();
14 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
17 $args = func_get_args();
18 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
21 $args = func_get_args();
22 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
25 $args = func_get_args();
26 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
H A DarrayObject_magicMethods3.phpt13 $args = func_get_args();
14 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
17 $args = func_get_args();
18 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
21 $args = func_get_args();
22 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
25 $args = func_get_args();
26 echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
/php-src/ext/opcache/tests/opt/
H A Dcoalesce.phpt27 ; (lines=1, args=0, vars=0, tmps=0)
33 ; (lines=2, args=0, vars=1, tmps=1)
40 ; (lines=2, args=0, vars=1, tmps=1)
H A Dtype_inference_final_class.phpt27 ; (lines=1, args=0, vars=0, tmps=0)
33 ; (lines=1, args=0, vars=0, tmps=0)
39 ; (lines=2, args=0, vars=0, tmps=1)
H A Ddce_009.phpt38 ; (lines=7, args=0, vars=0, tmps=0)
50 ; (lines=3, args=0, vars=0, tmps=0)
60 ; (lines=1, args=0, vars=0, tmps=0)
66 ; (lines=3, args=0, vars=0, tmps=1)
/php-src/ext/openssl/tests/
H A Decc.phpt12 $args = array(
18 $key1 = openssl_pkey_new($args);
65 $csr = openssl_csr_new($dn, $keyGenerate, $args);
69 $args["digest_alg"] = "sha256";
71 $csr = openssl_csr_new($dn, $key1, $args);
80 $x509 = openssl_csr_sign($csr, null, $key1, 365, $args);
86 $key3 = openssl_pkey_new($args);
/php-src/Zend/tests/arg_unpack/
H A Dmany_args.phpt6 function f(...$args) {
7 var_dump(count($args));
H A Ddynamic.phpt6 $fn = function(...$args) {
7 var_dump($args);
/php-src/Zend/tests/function_arguments/
H A Dsensitive_parameter_variadic_arguments.phpt7 #[SensitiveParameter] ...$args
29 ["args"]=>
52 ["args"]=>
H A Dsensitive_parameter_nested_calls.phpt41 ["args"]=>
61 ["args"]=>
83 ["args"]=>
103 ["args"]=>
/php-src/ext/reflection/tests/
H A DReflectionFiber_bug_gh11121_1.phpt38 ["args"]=>
50 ["args"]=>
58 ["args"]=>
H A DReflectionFiber_bug_gh11121_2.phpt39 ["args"]=>
51 ["args"]=>
59 ["args"]=>
H A DReflectionFiber_backtrace.phpt41 ["args"]=>
53 ["args"]=>
68 ["args"]=>
H A DReflectionFiber_notrace_2.phpt30 ["args"]=>
42 ["args"]=>
57 ["args"]=>
H A DReflectionGenerator_basic.phpt49 ["args"]=>
64 ["args"]=>
88 ["args"]=>
109 ["args"]=>
/php-src/ext/opcache/tests/
H A Dbug79475.phpt8 $args = func_get_args();
9 $args[] = "bar";
/php-src/ext/standard/tests/strings/
H A Dsscanf_basic5.phpt12 echo "\n-- Try sccanf() WITHOUT optional args --\n";
19 echo "\n-- Try sccanf() WITH optional args --\n";
31 -- Try sccanf() WITHOUT optional args --
41 -- Try sccanf() WITH optional args --
/php-src/Zend/tests/
H A Dclosure_032.phpt24 [args] => Array
40 [args] => Array
52 [args] => Array
/php-src/ext/intl/msgformat/
H A Dmsgformat_helpers.h19 void umsg_format_helper(MessageFormatter_object *mfo, HashTable *args,
21 void umsg_parse_helper(UMessageFormat *fmt, int *count, zval **args,
/php-src/Zend/tests/enum/
H A D__invoke.phpt9 public function __invoke(...$args)
11 return $args;
/php-src/Zend/tests/named_params/
H A Dunpack_and_named_1.phpt2 Named args after unpacking (supported)
6 function test(...$args) {
7 var_dump($args);
/php-src/ext/filter/tests/
H A Dfilter_input_array_001.phpt7 $args = [
13 var_dump(filter_input_array(INPUT_GET, $args, true));
/php-src/ext/xsl/
H A Dphp_xsl.c225 va_list args, in xsl_try_output_replaced_error_message() argument
241 #define XSL_TRY_OUTPUT_REPLACED_ERROR_MESSAGE(ctx, msg, args, search, replace) \ argument
242 xsl_try_output_replaced_error_message(ctx, msg, args, "" search, sizeof("" search) - 1, "" replace)
248 va_list args; in xsl_libxslt_error_handler() local
249 va_start(args, msg); in xsl_libxslt_error_handler()
253 const char *msg_arg = va_arg(args, const char *); in xsl_libxslt_error_handler()
254 …bool output = XSL_TRY_OUTPUT_REPLACED_ERROR_MESSAGE(ctx, msg_arg, args, "xsltMaxDepth (--maxdepth)… in xsl_libxslt_error_handler()
255 …|| XSL_TRY_OUTPUT_REPLACED_ERROR_MESSAGE(ctx, msg_arg, args, "maxTemplateVars (--maxvars)", "$maxT… in xsl_libxslt_error_handler()
261 php_libxml_error_handler_va(PHP_LIBXML_ERROR, ctx, msg, args); in xsl_libxslt_error_handler()
264 va_end(args); in xsl_libxslt_error_handler()
/php-src/ext/standard/
H A Duser_filters.c139 zval args[4]; in userfilter_filter() local
166 ZVAL_LONG(&args[2], *bytes_consumed); in userfilter_filter()
168 ZVAL_NULL(&args[2]); in userfilter_filter()
170 ZVAL_MAKE_REF(&args[2]); in userfilter_filter()
172 ZVAL_BOOL(&args[3], flags & PSFS_FLAG_FLUSH_CLOSE); in userfilter_filter()
178 4, args); in userfilter_filter()
190 *bytes_consumed = zval_get_long(&args[2]); in userfilter_filter()
204 zval_ptr_dtor(&args[3]); in userfilter_filter()
205 zval_ptr_dtor(&args[2]); in userfilter_filter()
206 zval_ptr_dtor(&args[1]); in userfilter_filter()
[all …]

Completed in 32 milliseconds

12345678910>>...22