Home
last modified time | relevance | path

Searched refs:args (Results 451 – 475 of 560) sorted by relevance

1...<<11121314151617181920>>...23

/PHP-7.4/ext/standard/tests/strings/
H A Dprintf_error.phpt5 /* Prototype : int printf ( string $format [, mixed $args [, mixed $... ]] )
H A Dtrim1.phpt31 // More than expected number of args */
H A Dstrcspn_variation5.phpt2 Test strcspn() function : usage variations - with heredoc strings with default start and len args
H A Dstrspn_variation5.phpt2 Test strspn() function : usage variations - with heredoc strings with default start and len args
H A Dstrcspn_variation6.phpt2 …spn() function : usage variations - with heredoc strings, varying mask & default start and len args
H A Dprintf_variation2.phpt5 /* Prototype : int printf ( string $format [, mixed $args [, mixed $... ]] )
H A Dstr_pad.phpt65 /* args less than min. expected of 2 */
69 /* args more than expected,expected 4 */
H A Dstrspn_variation6.phpt2 …spn() function : usage variations - with heredoc strings, varying mask & default start and len args
/PHP-7.4/ext/standard/tests/file/
H A Dreadfile_variation10.phpt25 /* Invalid args */
H A Dfile_get_contents_variation8-win32.phpt25 /* Invalid args */
H A Dfile_get_contents_variation8.phpt24 /* Invalid args */
H A Dreadfile_variation10-win32.phpt24 /* Invalid args */
H A D007_error.phpt21 /* Arguments less than minimum no.of args */
61 /* loop to test fclose with different invalid type of args */
H A Dunlink_error-win32.phpt29 // args > expected
/PHP-7.4/ext/standard/tests/array/
H A Darray_map_object1.phpt29 function test($cb, $args) {
31 var_dump(array_map($cb, $args));
/PHP-7.4/ext/standard/
H A Dvar.c219 zval *args; in PHP_FUNCTION() local
224 Z_PARAM_VARIADIC('+', args, argc) in PHP_FUNCTION()
228 php_var_dump(&args[i], 1); in PHP_FUNCTION()
404 zval *args; in PHP_FUNCTION() local
409 Z_PARAM_VARIADIC('+', args, argc) in PHP_FUNCTION()
413 php_debug_zval_dump(&args[i], 1); in PHP_FUNCTION()
H A Dbasic_functions.c288 ZEND_ARG_VARIADIC_INFO(0, args)
292 ZEND_ARG_VARIADIC_INFO(0, args)
1352 ZEND_ARG_VARIADIC_INFO(0, args)
1362 ZEND_ARG_VARIADIC_INFO(0, args)
1373 ZEND_ARG_VARIADIC_INFO(0, args)
1811 ZEND_ARG_VARIADIC_INFO(0, args)
4395 if (Z_TYPE_P(args) != IS_ARRAY) {
4506 if (Z_TYPE_P(args) != IS_ARRAY) {
4507 convert_to_array_ex(args);
4516 if (Z_TYPE_P(args) != IS_ARRAY) {
[all …]
H A Dvar_unserializer.re1036 zval args[1];
1107 ZVAL_STR_COPY(&args[0], class_name);
1109 if (call_user_function_ex(NULL, NULL, &user_func, &retval, 1, args, 0, NULL) != SUCCESS) {
1114 zval_ptr_dtor(&args[0]);
1121 zval_ptr_dtor(&args[0]);
1129 zval_ptr_dtor(&args[0]);
1143 zval_ptr_dtor(&args[0]);
/PHP-7.4/ext/snmp/
H A Dsnmp.c56 #define __P(args) args argument
58 #define __P(args) () argument
491 va_list args; in php_snmp_error() local
499 va_start(args, format); in php_snmp_error()
500 vsnprintf(snmp_object->snmp_errstr, sizeof(snmp_object->snmp_errstr) - 1, format, args); in php_snmp_error()
501 va_end(args); in php_snmp_error()
513 va_start(args, format); in php_snmp_error()
514 php_verror(NULL, "", E_WARNING, format, args); in php_snmp_error()
515 va_end(args); in php_snmp_error()
/PHP-7.4/Zend/
H A Dzend.h189 …*error_filename, const uint32_t error_lineno, const char *format, va_list args) ZEND_ATTRIBUTE_PTR…
283 …*error_filename, const uint32_t error_lineno, const char *format, va_list args) ZEND_ATTRIBUTE_PTR…
H A Dzend_vm_gen.php887 … $args = preg_replace("/,\s*([A-Za-z0-9_]*)\s*,\s*([^,)\s]*)\s*/", "$1 = $2; ", $matches[2]);
888 … return $args . "goto " . helper_name($matches[1], $spec, $op1, $op2, $extra_spec) . "_LABEL";
894 … $args = substr(preg_replace("/,\s*[A-Za-z0-9_]*\s*,\s*([^,)\s]*)\s*/", ", $1", $matches[2]), 2);
895 …ALL(" . helper_name($matches[1], $spec, $op1, $op2, $extra_spec) . "(" . $args. " ZEND_OPCODE_HAND…
928 … $args = substr(preg_replace("/,\s*[A-Za-z0-9_]*\s*,\s*([^,)\s]*)\s*/", ", $1", $matches[2]), 2);
929 …ALL(" . helper_name($matches[1], $spec, $op1, $op2, $extra_spec) . "(" . $args. " ZEND_OPCODE_HAND…
952 … $args = preg_replace("/,\s*([A-Za-z0-9_]*)\s*,\s*([^,)\s]*)\s*/", "$1 = $2; ", $matches[2]);
953 … return $args . "goto " . helper_name($matches[1], $spec, $op1, $op2, $extra_spec);
976 … $args = preg_replace("/,\s*([A-Za-z0-9_]*)\s*,\s*([^,)\s]*)\s*/", "$1 = $2; ", $matches[2]);
977 … return $args . "goto " . helper_name($matches[1], $spec, $op1, $op2, $extra_spec);
/PHP-7.4/ext/sockets/
H A Dconversions.c216 void (*func)(zval *elem, unsigned i, void **args, ser_context *ctx), in from_array_iterate() argument
217 void **args, in from_array_iterate()
233 func(elem, i, args, ctx); in from_array_iterate()
1083 static void from_zval_write_iov_array_aux(zval *elem, unsigned i, void **args, ser_context *ctx) in from_zval_write_iov_array_aux() argument
1085 struct msghdr *msg = args[0]; in from_zval_write_iov_array_aux()
1351 static void from_zval_write_fd_array_aux(zval *elem, unsigned i, void **args, ser_context *ctx) in from_zval_write_fd_array_aux() argument
1353 int *iarr = args[0]; in from_zval_write_fd_array_aux()
/PHP-7.4/ext/intl/dateformat/
H A Ddateformat_class.c118 ZEND_ARG_INFO(0, args)
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_006.phpt2 ReflectionMethod methods - wrong num args
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_cmd.c472 const char *arg = command->args; in phpdbg_stack_verify()
500 arg = command->args; in phpdbg_stack_verify()
562 command->args, in phpdbg_stack_verify()

Completed in 69 milliseconds

1...<<11121314151617181920>>...23