Home
last modified time | relevance | path

Searched refs:args (Results 126 – 150 of 560) sorted by relevance

12345678910>>...23

/PHP-7.4/ext/standard/tests/strings/
H A Dvprintf_variation8.phpt5 /* Prototype : string vprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
65 foreach($args_array as $args) {
67 $result = vprintf($formats, $args);
H A Dvsprintf_variation10.phpt5 /* Prototype : string vsprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
69 foreach($args_array as $args) {
71 var_dump( vsprintf($formats, $args) );
H A Dvsprintf_variation8.phpt5 /* Prototype : string vsprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
65 foreach($args_array as $args) {
67 var_dump( vsprintf($formats, $args) );
H A Dvprintf_variation10.phpt5 /* Prototype : string vprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
69 foreach($args_array as $args) {
71 $result = vprintf($formats, $args);
H A Dvprintf_variation12.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
73 foreach($args_array as $args) {
75 $result = vprintf($formats, $args);
H A Dvprintf_variation12_64bit.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
73 foreach($args_array as $args) {
75 $result = vprintf($formats, $args);
H A Dvprintf_variation16.phpt9 /* Prototype : string vprintf(string format, array args)
16 * are passed to the '$format' and '$args' arguments of the function
66 foreach($args_array as $args) {
68 $result = vprintf($formats, $args);
H A Dvprintf_variation16_64bit.phpt9 /* Prototype : string vprintf(string format, array args)
16 * are passed to the '$format' and '$args' arguments of the function
66 foreach($args_array as $args) {
68 $result = vprintf($formats, $args);
H A Dvsprintf_variation12.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
73 foreach($args_array as $args) {
75 var_dump( vsprintf($formats, $args) );
H A Dvsprintf_variation16.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * are passed to the '$format' and '$args' arguments of the function
66 foreach($args_array as $args) {
68 var_dump( vsprintf($formats, $args) );
H A Dvsprintf_variation4.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
66 foreach($args_array as $args) {
68 var_dump( vsprintf($formats, $args) );
H A Dvprintf_variation4.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
66 foreach($args_array as $args) {
68 $result = vprintf($formats, $args);
H A Dvprintf_variation4_64bit.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
66 foreach($args_array as $args) {
68 $result = vprintf($formats, $args);
/PHP-7.4/ext/intl/converter/
H A Dconverter.c178 if (TARGET_CHECK(args, 2)) { in php_converter_append_toUnicode_target()
186 if (TARGET_CHECK(args, 1)) { in php_converter_append_toUnicode_target()
187 *(args->target++) = (UChar)lval; in php_converter_append_toUnicode_target()
196 while((i != strlen) && TARGET_CHECK(args, 1)) { in php_converter_append_toUnicode_target()
199 *(args->target++) = c; in php_converter_append_toUnicode_target()
231 if (args->source) { in php_converter_to_u_callback()
232 ZVAL_STRINGL(&zargs[1], args->source, args->sourceLimit - args->source); in php_converter_to_u_callback()
275 if (TARGET_CHECK(args, 1)) { in php_converter_append_fromUnicode_target()
276 *(args->target++) = Z_LVAL_P(val); in php_converter_append_fromUnicode_target()
282 if (TARGET_CHECK(args, vallen)) { in php_converter_append_fromUnicode_target()
[all …]
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_invokeArgs_error1.phpt21 echo "\nMethod with args:\n";
26 Method with args:
/PHP-7.4/ext/opcache/tests/opt/
H A Ddce_002.phpt23 $_main: ; (lines=1, args=0, vars=0, tmps=0)
28 foo: ; (lines=5, args=1, vars=2, tmps=0)
H A Dsccp_012.phpt29 $_main: ; (lines=1, args=0, vars=0, tmps=0)
34 foo: ; (lines=3, args=0, vars=0, tmps=0)
H A Ddce_001.phpt20 $_main: ; (lines=1, args=0, vars=0, tmps=0)
25 foo: ; (lines=5, args=4, vars=4, tmps=0)
H A Dsccp_002.phpt26 $_main: ; (lines=1, args=0, vars=0, tmps=0)
31 foo: ; (lines=4, args=1, vars=1, tmps=0)
H A Dprop_types.phpt42 $_main: ; (lines=1, args=0, vars=0, tmps=0, ssa_vars=0, no_loops)
50 noScope: ; (lines=10, args=1, vars=1, tmps=1, ssa_vars=5, no_loops)
68 Test::inTest: ; (lines=9, args=0, vars=0, tmps=1, ssa_vars=3, no_loops)
84 Test::inTestWithTest2: ; (lines=10, args=1, vars=1, tmps=1, ssa_vars=5, no_loops)
102 Test2::inTest2: ; (lines=9, args=0, vars=0, tmps=1, ssa_vars=3, no_loops)
H A Dsccp_004.phpt29 $_main: ; (lines=1, args=0, vars=0, tmps=0)
34 foo: ; (lines=4, args=1, vars=1, tmps=0)
/PHP-7.4/Zend/tests/
H A Dbug69212.phpt7 public static function __callStatic($method, $args) {}
8 public function __call($method, $args) {}
/PHP-7.4/ext/standard/tests/file/
H A Dis_executable_error.phpt10 var_dump( is_executable() ); // args < expected no of arguments
12 var_dump( is_executable(1, 2) ); // args > expected no. of arguments
H A Dis_readable_error.phpt10 var_dump( is_readable() ); // args < expected
11 var_dump( is_readable(1, 2) ); // args > expected
/PHP-7.4/Zend/tests/arg_unpack/
H A Dbasic.phpt6 function test(...$args) {
7 var_dump($args);

Completed in 45 milliseconds

12345678910>>...23