Home
last modified time | relevance | path

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

12345678910>>...22

/PHP-5.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-5.3/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.3/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 DReflectionMethod_invokeArgs_basic.phpt38 echo "\nMethod with args:\n";
66 Method with 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
/PHP-5.3/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_exceptions.c352 static int _build_trace_args(zval **arg TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_… in _build_trace_args() argument
357 str = va_arg(args, char**); in _build_trace_args()
358 len = va_arg(args, int*); in _build_trace_args()
448 static int _build_trace_string(zval **frame TSRMLS_DC, int num_args, va_list args, zend_hash_key *h… in _build_trace_string() argument
461 str = va_arg(args, char**); in _build_trace_string()
462 len = va_arg(args, int*); in _build_trace_string()
463 num = va_arg(args, int*); in _build_trace_string()
774 va_list args; in zend_error_va() local
776 va_start(args, format); in zend_error_va()
777 zend_error_cb(type, file, lineno, format, args); in zend_error_va()
[all …]
/PHP-5.3/ext/openssl/tests/
H A D022.phpt19 $args = array(
28 $csr = openssl_csr_new($dn, $privkey, $args);
/PHP-5.3/ext/spl/tests/
H A DarrayObject_count_basic1.phpt29 //Extra args are ignored.
57 //Extra args are ignored.
/PHP-5.3/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.3/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
/PHP-5.3/ext/libxml/
H A Dlibxml.c533 va_list args; in php_libxml_ctx_error() local
534 va_start(args, msg); in php_libxml_ctx_error()
535 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
536 va_end(args); in php_libxml_ctx_error()
541 va_list args; in php_libxml_ctx_warning() local
542 va_start(args, msg); in php_libxml_ctx_warning()
544 va_end(args); in php_libxml_ctx_warning()
556 va_list args; in php_libxml_error_handler() local
557 va_start(args, msg); in php_libxml_error_handler()
558 php_libxml_internal_error_handler(PHP_LIBXML_ERROR, ctx, &msg, args); in php_libxml_error_handler()
[all …]
/PHP-5.3/ext/standard/
H A Dscanf.h45 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval ***args,
/PHP-5.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 48 milliseconds

12345678910>>...22