Home
last modified time | relevance | path

Searched refs:args (Results 151 – 175 of 566) sorted by relevance

12345678910>>...23

/PHP-5.4/ext/standard/tests/file/
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 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 Dfpassthru_error.phpt17 /* No.of args less than expected */
20 /* No.of args greaer than expected */
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-5.4/tests/lang/
H A Dfunc_num_args.002.phpt2 func_num_args with variable number of args
H A Dfunc_get_args.002.phpt2 func_get_args with variable number of args
H A Dfunc_get_arg.002.phpt2 func_get_arg with variable number of args
/PHP-5.4/Zend/
H A Dzend_extensions.c197 …extension_message_dispatcher(const zend_extension *extension, int num_args, va_list args TSRMLS_DC) in zend_extension_message_dispatcher()
205 message = va_arg(args, int); in zend_extension_message_dispatcher()
206 arg = va_arg(args, void *); in zend_extension_message_dispatcher()
H A Dzend.c1021 va_list args; in zend_error() local
1107 va_start(args, format); in zend_error()
1111 va_end(args); in zend_error()
1115 va_start(args, format); in zend_error()
1151 va_copy(usr_copy, args); in zend_error()
1252 va_end(args); in zend_error()
1274 va_list args; in zend_output_debug_string() local
1276 va_start(args, format); in zend_output_debug_string()
1281 vsnprintf(output_buf, 1024, format, args); in zend_output_debug_string()
1289 vfprintf(stderr, format, args); in zend_output_debug_string()
[all …]
/PHP-5.4/ext/reflection/tests/
H A DReflectionClass_newInstance_001.phpt16 echo "In constructor of class B with args $a, $b\n";
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
H A DReflectionProperty_export_error.phpt35 echo "\n\nIncorrect number of args:\n";
50 Incorrect number of args:
H A DReflectionClass_newInstanceArgs_001.phpt16 echo "In constructor of class B with args $a, $b\n";
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
H A DReflectionMethod_invokeArgs_basic.phpt38 echo "\nMethod with args:\n";
66 Method with args:
/PHP-5.4/ext/openssl/tests/
H A D022.phpt19 $args = array(
28 $csr = openssl_csr_new($dn, $privkey, $args);
/PHP-5.4/ext/standard/tests/strings/
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 Dvprintf_variation1.phpt5 /* Prototype : string vprintf(string $format, array $args)
18 $args = array(1, 2);
91 $result = vprintf($value,$args);
/PHP-5.4/ext/spl/tests/
H A DarrayObject_count_basic1.phpt29 //Extra args are ignored.
57 //Extra args are ignored.
/PHP-5.4/Zend/tests/
H A Dbug38220.phpt25 function __call($method, $args) {
32 call_user_func_array(array($drv, $method), $args);
H A Dbug47880.phpt8 $backtrace[1]['args'][1] = 'bomb';
/PHP-5.4/ext/standard/
H A Dscanf.h45 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval ***args,
/PHP-5.4/ext/wddx/
H A Dwddx.c1188 zval ***args = NULL; in PHP_FUNCTION() local
1200 if (Z_TYPE_PP(args[i]) != IS_ARRAY && Z_TYPE_PP(args[i]) != IS_OBJECT) { in PHP_FUNCTION()
1201 convert_to_string_ex(args[i]); in PHP_FUNCTION()
1203 php_wddx_add_var(packet, *args[i]); in PHP_FUNCTION()
1209 efree(args); in PHP_FUNCTION()
1290 zval ***args = NULL; in PHP_FUNCTION() local
1299 efree(args); in PHP_FUNCTION()
1304 efree(args); in PHP_FUNCTION()
1309 if (Z_TYPE_PP(args[i]) != IS_ARRAY && Z_TYPE_PP(args[i]) != IS_OBJECT) { in PHP_FUNCTION()
1310 convert_to_string_ex(args[i]); in PHP_FUNCTION()
[all …]

Completed in 47 milliseconds

12345678910>>...23