Home
last modified time | relevance | path

Searched refs:args (Results 201 – 225 of 560) sorted by relevance

12345678910>>...23

/PHP-7.4/ext/standard/tests/file/
H A Dfilegroup_error.phpt19 var_dump( filegroup() ); // args < expected
20 var_dump( filegroup("/no/such/file", "root") ); // args > expected
H A Dfiletype_error.phpt19 /* No.of args less than expected */
22 /* No.of args greater than expected */
H A Dis_writable_error.phpt12 var_dump( is_writable() ); // args < expected
16 var_dump( is_writable(1, 2) ); // args > expected
H A Dfileowner_error.phpt19 var_dump( fileowner() ); // args < expected
20 var_dump( fileowner("/no/such/file", "root") ); // args > expected
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_csr_get_subject_basic.phpt27 $args = array(
36 $csr = openssl_csr_new($dn, $privkey_file, $args);
H A Dopenssl_csr_export_bacis.phpt19 $args = array(
28 $csr = openssl_csr_new($dn, $privkey, $args);
/PHP-7.4/ext/standard/tests/array/
H A Darray_key_exists.phpt72 //Zeor args
74 // first args as array
76 // second args as string
78 // second args a integer
80 // second args as NULL
82 // second args as boolean
84 // first args as boolean
86 // second args as float
88 // args more than expected
/PHP-7.4/ext/com_dotnet/
H A Dcom_handlers.c126 zval args[2]; in com_write_dimension() local
138 ZVAL_COPY_VALUE(&args[0], offset); in com_write_dimension()
139 ZVAL_COPY_VALUE(&args[1], value); in com_write_dimension()
144 DISPATCH_METHOD|DISPATCH_PROPERTYPUT, &v, 2, args, 0, 0)) { in com_write_dimension()
384 zval *args = NULL; in com_call_method() local
397 args = (zval *)safe_emalloc(sizeof(zval), nargs, 0); in com_call_method()
398 zend_get_parameters_array_ex(nargs, args); in com_call_method()
403 …f(obj, (zend_internal_function*)EX(func), DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args)) { in com_call_method()
409 if (args) { in com_call_method()
410 efree(args); in com_call_method()
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c689 beg = args->region->beg[gn]; in mb_regex_groups_iter()
690 end = args->region->end[gn]; in mb_regex_groups_iter()
691 if (beg >= 0 && beg < end && end <= args->search_len) { in mb_regex_groups_iter()
692 …add_assoc_stringl_ex(args->groups, (char *)name, name_end - name, &args->search_str[beg], end - be… in mb_regex_groups_iter()
975 onig_foreach_name(re, mb_regex_groups_iter, &args); in _php_mb_regex_ereg_exec()
1178 zval args[1]; in _php_mb_regex_ereg_replace_exec() local
1188 onig_foreach_name(re, mb_regex_groups_iter, &args); in _php_mb_regex_ereg_replace_exec()
1191 ZVAL_COPY_VALUE(&args[0], &subpats); in _php_mb_regex_ereg_replace_exec()
1196 arg_replace_fci.params = args; in _php_mb_regex_ereg_replace_exec()
1507 mb_regex_groups_iter_args args = { in _php_mb_regex_ereg_search_exec() local
[all …]
/PHP-7.4/Zend/tests/variadic/
H A Dby_ref_error.phpt6 function test(&... $args) { }
H A Dno_default_error.phpt6 function test(...$args = 123) {}
/PHP-7.4/ext/standard/
H A Dscanf.h43 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval *args,
/PHP-7.4/Zend/tests/
H A Dbug47880.phpt8 $backtrace[1]['args'][1] = 'bomb';
H A Dbug38220.phpt25 function __call($method, $args) {
32 call_user_func_array(array($drv, $method), $args);
/PHP-7.4/Zend/tests/arg_unpack/
H A Dby_ref.phpt8 function test1(&...$args) {
9 foreach ($args as &$arg) {
/PHP-7.4/ext/intl/uchar/
H A Duchar.c189 zval args[3]; in enumCharType_callback() local
195 ZVAL_LONG(&args[0], start); in enumCharType_callback()
196 ZVAL_LONG(&args[1], limit); in enumCharType_callback()
197 ZVAL_LONG(&args[2], type); in enumCharType_callback()
201 context->fci.params = args; in enumCharType_callback()
306 zval args[3]; in enumCharNames_callback() local
309 ZVAL_LONG(&args[0], code); in enumCharNames_callback()
310 ZVAL_LONG(&args[1], nameChoice); in enumCharNames_callback()
315 context->fci.params = args; in enumCharNames_callback()
321 zval_ptr_dtor_str(&args[2]); in enumCharNames_callback()
[all …]
/PHP-7.4/ext/spl/tests/
H A DarrayObject_count_basic1.phpt29 //Extra args are ignored.
57 //Extra args are ignored.
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_invokeArgs_basic.phpt38 echo "\nMethod with args:\n";
66 Method with args:
/PHP-7.4/ext/standard/tests/strings/
H A Dvprintf_variation1.phpt5 /* Prototype : string vprintf(string $format, array $args)
18 $args = array(1, 2);
91 $result = vprintf($value,$args);
H A Dvsprintf_variation1.phpt5 /* Prototype : string vsprintf(string $format, array $args)
18 $args = array(1, 2);
91 var_dump( vsprintf($value,$args) );
H A Dvfprintf_variation20.phpt5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
18 $args = array(1, 2);
96 vfprintf($fp, $value, $args);
H A Dvsprintf_variation19.phpt9 /* Prototype : string vsprintf(string $format , array $args)
31 // initializing the args array
H A Dvsprintf_variation19_64bit.phpt9 /* Prototype : string vsprintf(string $format , array $args)
31 // initializing the args array
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_frame.c174 zval *funcname, *class, class_zv, *args, *argstmp; in phpdbg_dump_prototype() local
195 args = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("args")); in phpdbg_dump_prototype()
196 if (args) { in phpdbg_dump_prototype()
202 if (args) { in phpdbg_dump_prototype()
217 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(args), argstmp) { in phpdbg_dump_prototype()
/PHP-7.4/Zend/tests/generators/
H A Dgenerator_trampoline.phpt6 public function __call($name, $args) {

Completed in 93 milliseconds

12345678910>>...23