Home
last modified time | relevance | path

Searched refs:args (Results 226 – 250 of 676) sorted by relevance

12345678910>>...28

/PHP-7.3/ext/intl/uchar/
H A Duchar.c191 zval args[3]; in enumCharType_callback() local
197 ZVAL_LONG(&args[0], start); in enumCharType_callback()
198 ZVAL_LONG(&args[1], limit); in enumCharType_callback()
199 ZVAL_LONG(&args[2], type); in enumCharType_callback()
203 context->fci.params = args; in enumCharType_callback()
308 zval args[3]; in enumCharNames_callback() local
311 ZVAL_LONG(&args[0], code); in enumCharNames_callback()
312 ZVAL_LONG(&args[1], nameChoice); in enumCharNames_callback()
317 context->fci.params = args; in enumCharNames_callback()
323 zval_ptr_dtor_str(&args[2]); in enumCharNames_callback()
[all …]
/PHP-7.3/ext/standard/tests/file/
H A Dfgetcsv_error.phpt15 // more than expected no. of args
35 /* loop to test fgetcsv() with different invalid type of args */
38 var_dump( fgetcsv($invalid_args[$loop_counter - 1]) ); // with default args
39 …etcsv($invalid_args[$loop_counter - 1], $len, $delim, $enclosure, $escape) ); // all args specified
H A Dfputcsv_error.phpt16 // more than expected no. of args
35 /* loop to test fputcsv() with different invalid type of args */
38 var_dump( fputcsv($invalid_args[$loop_counter - 1]) ); // with default args
39 …var_dump( fputcsv($invalid_args[$loop_counter - 1], $fields, $delim, $enclosure) ); // all args sp…
H A Dfileowner_error.phpt19 var_dump( fileowner() ); // args < expected
20 var_dump( fileowner("/no/such/file", "root") ); // args > expected
H A Dis_writable_error.phpt12 var_dump( is_writable() ); // args < expected
16 var_dump( is_writable(1, 2) ); // args > expected
H A Dis_file_error.phpt12 var_dump( is_file() ); // Zero No. of args
14 /* no of args > expected */
/PHP-7.3/Zend/tests/
H A Dbug69025.phpt6 public static function __callStatic($method, $args)
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.3/tests/lang/
H A Dfunc_get_arg.002.phpt2 func_get_arg with variable number of args
/PHP-7.3/ext/openssl/tests/
H A Dopenssl_csr_export_bacis.phpt19 $args = array(
28 $csr = openssl_csr_new($dn, $privkey, $args);
H A Dopenssl_csr_get_subject_basic.phpt27 $args = array(
36 $csr = openssl_csr_new($dn, $privkey_file, $args);
/PHP-7.3/ext/reflection/tests/
H A DReflectionProperty_export_error.phpt35 echo "\n\nIncorrect number of args:\n";
50 Incorrect number of args:
H A DReflectionMethod_invokeArgs_basic.phpt38 echo "\nMethod with args:\n";
66 Method with args:
/PHP-7.3/Zend/tests/arg_unpack/
H A Dby_ref.phpt8 function test1(&...$args) {
9 foreach ($args as &$arg) {
/PHP-7.3/Zend/tests/variadic/
H A Dby_ref_error.phpt6 function test(&... $args) { }
H A Dno_default_error.phpt6 function test(...$args = 123) {}
/PHP-7.3/ext/standard/
H A Dscanf.h43 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval *args,
/PHP-7.3/ext/spl/tests/
H A DarrayObject_count_basic1.phpt29 //Extra args are ignored.
57 //Extra args are ignored.
H A Dspl_heap_count_error.phpt2 SPL: Priority queue count, illegal number of args
/PHP-7.3/ext/standard/tests/strings/
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 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) );
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_frame.c174 zval *funcname, *class, class_zv, *type, *args, *argstmp; in phpdbg_dump_prototype() local
189 args = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("args")); in phpdbg_dump_prototype()
193 if (args) { in phpdbg_dump_prototype()
201 if (args) { in phpdbg_dump_prototype()
216 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(args), argstmp) { in phpdbg_dump_prototype()
/PHP-7.3/ext/standard/tests/array/
H A D001.phpt16 function make_nested_array ($depth, $breadth, $function = NULL, $args = array ()) {
21 $array = array (call_user_func_array ($function, $args));

Completed in 50 milliseconds

12345678910>>...28