Home
last modified time | relevance | path

Searched refs:arg2 (Results 51 – 75 of 141) sorted by last modified time

123456

/PHP-7.4/ext/standard/tests/strings/
H A Dsscanf_basic8.phpt19 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format1);
20 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
21 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format2);
22 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
26 $res = sscanf($str, $format1, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
27 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
28 $res = sscanf($str, $format2, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
29 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
H A Dsprintf_error.phpt21 $arg2 = 'two';
26 var_dump( sprintf($format3,$arg1,$arg2) );
H A Dprintf_basic1.phpt18 $arg2 = "arg2 argument";
32 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
56 arg1 argument arg2 argument
60 arg1 argument arg2 argument arg3 argument
H A Dprintf_basic2.phpt19 $arg2 = 222;
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic3.phpt24 $arg2 = 22.22;
41 $result = printf($format2, $arg1, $arg2);
44 $result = printf($format22, $arg1, $arg2);
49 $result = printf($format3, $arg1, $arg2, $arg3);
52 $result = printf($format33, $arg1, $arg2, $arg3);
H A Dprintf_basic4.phpt19 $arg2 = FALSE;
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic5.phpt19 $arg2 = 66;
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic6.phpt18 $arg2 = 2e3;
32 $result = printf($format2, $arg1, $arg2);
37 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic7.phpt25 $arg2 = -1234567;
39 $result = printf($format2, $arg1, $arg2);
44 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic8.phpt24 $arg2 = -0347;
38 $result = printf($format2, $arg1, $arg2);
43 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic9.phpt25 $arg2 = 132;
42 $result = printf($format2, $arg1, $arg2);
45 $result = printf($format22, $arg1, $arg2);
50 $result = printf($format3, $arg1, $arg2, $arg3);
53 $result = printf($format33, $arg1, $arg2, $arg3);
H A Dprintf_error.phpt21 $arg2 = 'two';
26 var_dump( printf($format3,$arg1,$arg2) );
H A Dprintf_variation1.phpt18 $arg2 = "third arg";
102 $result = printf($value, $arg1, $arg2);
H A Dprintf_variation2.phpt16 $arg2 = 'third argument';
99 $result = printf($format, $value, $arg2);
/PHP-7.4/ext/standard/tests/streams/
H A Dset_file_buffer.phpt23 function stream_set_option($option, $arg1, $arg2) {
24 echo "option: ", $option, ", ", $arg1, ", ", $arg2, "\n";
H A Dstream_set_chunk_size.phpt20 function stream_set_option($option, $arg1, $arg2) {
21 echo "option: ", $option, ", ", $arg1, ", ", $arg2, "\n";
/PHP-7.4/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt8 function test1($arg1, $arg2)
11 echo "$arg1 $arg2\n";
17 function & test2($arg1, $arg2)
20 echo "$arg1 $arg2\n";
/PHP-7.4/ext/standard/tests/file/
H A Duserstreams_006.phpt16 function stream_set_option($option, $arg1, $arg2) {
17 echo "option: ", $option, ", ", $arg1, ", ", $arg2, "\n";
/PHP-7.4/ext/standard/
H A Dbrowscap.c302 static void php_browscap_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg… in php_browscap_parser_cb() argument
314 if (ctx->current_entry != NULL && arg2) { in php_browscap_parser_cb()
318 if ((Z_STRLEN_P(arg2) == 2 && !strncasecmp(Z_STRVAL_P(arg2), "on", sizeof("on") - 1)) || in php_browscap_parser_cb()
319 (Z_STRLEN_P(arg2) == 3 && !strncasecmp(Z_STRVAL_P(arg2), "yes", sizeof("yes") - 1)) || in php_browscap_parser_cb()
320 (Z_STRLEN_P(arg2) == 4 && !strncasecmp(Z_STRVAL_P(arg2), "true", sizeof("true") - 1)) in php_browscap_parser_cb()
324 (Z_STRLEN_P(arg2) == 2 && !strncasecmp(Z_STRVAL_P(arg2), "no", sizeof("no") - 1)) || in php_browscap_parser_cb()
325 (Z_STRLEN_P(arg2) == 3 && !strncasecmp(Z_STRVAL_P(arg2), "off", sizeof("off") - 1)) || in php_browscap_parser_cb()
326 (Z_STRLEN_P(arg2) == 4 && !strncasecmp(Z_STRVAL_P(arg2), "none", sizeof("none") - 1)) || in php_browscap_parser_cb()
327 (Z_STRLEN_P(arg2) == 5 && !strncasecmp(Z_STRVAL_P(arg2), "false", sizeof("false") - 1)) in php_browscap_parser_cb()
331 new_value = browscap_intern_str(ctx, Z_STR_P(arg2), persistent); in php_browscap_parser_cb()
[all …]
/PHP-7.4/ext/spl/
H A Dspl_engine.h42 …tic inline int spl_instantiate_arg_ex2(zend_class_entry *pce, zval *retval, zval *arg1, zval *arg2) in spl_instantiate_arg_ex2() argument
47 …, ZSTR_VAL(func->common.function_name), ZSTR_LEN(func->common.function_name), NULL, 2, arg1, arg2); in spl_instantiate_arg_ex2()
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_invoke_basic.phpt58 var_dump($methodWithArgs->invoke($testClassInstance, 1, "arg2"));
59 var_dump($methodWithArgs->invoke($testClassInstance, 1, "arg2", 3));
91 Called methodWithArgs(1, arg2)
93 Called methodWithArgs(1, arg2)
/PHP-7.4/ext/intl/
H A Dphp_intl.c145 ZEND_ARG_INFO(0, arg2)
236 ZEND_ARG_INFO(0, arg2)
/PHP-7.4/ext/intl/collator/
H A Dcollator_class.c81 ZEND_ARG_INFO( 0, arg2 )
/PHP-7.4/Zend/
H A Dzend_interfaces.c33 …function_name, size_t function_name_len, zval *retval_ptr, int param_count, zval* arg1, zval* arg2) in zend_call_method() argument
44 ZVAL_COPY_VALUE(&params[1], arg2); in zend_call_method()
H A Dzend_interfaces.h40 …r *function_name, size_t function_name_len, zval *retval, int param_count, zval* arg1, zval* arg2);
48 #define zend_call_method_with_2_params(obj, obj_ce, fn_proxy, function_name, retval, arg1, arg2) \ argument
49 …d_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 2, arg1, arg2)

Completed in 69 milliseconds

123456