Home
last modified time | relevance | path

Searched refs:arg1 (Results 101 – 125 of 140) sorted by relevance

123456

/PHP-8.1/ext/mysqli/tests/
H A D060.phpt14 function __construct($arg1, $arg2) {
15 echo __METHOD__ . "($arg1,$arg2)\n";
/PHP-8.1/ext/soap/tests/interop/Round3/GroupF/
H A Dr3_groupF_headers_004w.phpt10 new SoapHeader("http://soapinterop.org/xsd","Header1", array("int"=>34,"string"=>"arg1")),
22 …s1="http://soapinterop.org/xsd"><SOAP-ENV:Header><ns1:Header1><ns1:string>arg1</ns1:string><ns1:in…
/PHP-8.1/ext/zend_test/
H A Dtest.stub.php107 function zend_iterable(iterable $arg1, ?iterable $arg2 = null): void {} argument
119 …function zend_call_method(string $class, string $method, mixed $arg1 = UNKNOWN, mixed $arg2 = UNKN… argument
H A Dtest.c103 zval *arg1; in ZEND_FUNCTION() local
105 zend_parse_parameters(ZEND_NUM_ARGS(), "|z", &arg1); in ZEND_FUNCTION()
299 zval *arg1, *arg2; in ZEND_FUNCTION() local
302 Z_PARAM_ITERABLE(arg1) in ZEND_FUNCTION()
313 zval *arg1 = NULL, *arg2 = NULL; in ZEND_FUNCTION() local
320 Z_PARAM_ZVAL(arg1) in ZEND_FUNCTION()
324 …(NULL, ce, NULL, ZSTR_VAL(method_name), ZSTR_LEN(method_name), return_value, argc - 2, arg1, arg2); in ZEND_FUNCTION()
/PHP-8.1/Zend/tests/generators/
H A Dbacktrace.phpt10 function f2($arg1, $arg2) {
/PHP-8.1/ext/standard/
H A Dhead.c298 zval *arg1 = NULL, *arg2 = NULL; in PHP_FUNCTION() local
304 Z_PARAM_ZVAL(arg1) in PHP_FUNCTION()
319 ZEND_TRY_ASSIGN_REF_STRING(arg1, file); in PHP_FUNCTION()
321 ZEND_TRY_ASSIGN_REF_EMPTY_STRING(arg1); in PHP_FUNCTION()
H A Dformatted_print.c865 zval *arg1, *args; in PHP_FUNCTION() local
870 Z_PARAM_RESOURCE(arg1) in PHP_FUNCTION()
875 php_stream_from_zval(stream, arg1); in PHP_FUNCTION()
895 zval *arg1, *args; in PHP_FUNCTION() local
901 Z_PARAM_RESOURCE(arg1) in PHP_FUNCTION()
906 php_stream_from_zval(stream, arg1); in PHP_FUNCTION()
H A Dbrowscap.c300 static void php_browscap_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg… in php_browscap_parser_cb() argument
306 if (!arg1) { in php_browscap_parser_cb()
331 if (zend_string_equals_literal_ci(Z_STR_P(arg1), "parent")) { in php_browscap_parser_cb()
348 new_key = browscap_intern_str_ci(ctx, Z_STR_P(arg1), persistent); in php_browscap_parser_cb()
357 zend_string *pattern = Z_STR_P(arg1); in php_browscap_parser_cb()
370 Z_TYPE_FLAGS_P(arg1) = 0; in php_browscap_parser_cb()
H A Dbasic_functions.c2479 static void php_simple_ini_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, zval *a… argument
2489 zend_symtable_update(Z_ARRVAL_P(arr), Z_STR_P(arg1), arg2);
2501 …if (!(Z_STRLEN_P(arg1) > 1 && Z_STRVAL_P(arg1)[0] == '0') && is_numeric_string(Z_STRVAL_P(arg1), Z…
2502 zend_ulong key = (zend_ulong) zend_atol(Z_STRVAL_P(arg1), Z_STRLEN_P(arg1));
2508 if ((find_hash = zend_hash_find(Z_ARRVAL_P(arr), Z_STR_P(arg1))) == NULL) {
2510 find_hash = zend_hash_add_new(Z_ARRVAL_P(arr), Z_STR_P(arg1), &hash);
2535 static void php_ini_parser_cb_with_sections(zval *arg1, zval *arg2, zval *arg3, int callback_type, … argument
2539 zend_symtable_update(Z_ARRVAL_P(arr), Z_STR_P(arg1), &BG(active_ini_file_section));
2549 php_simple_ini_parser_cb(arg1, arg2, arg3, callback_type, active_arr);
H A Dstreamsfuncs.c1419 zval *arg1; in PHP_FUNCTION() local
1426 Z_PARAM_RESOURCE(arg1) in PHP_FUNCTION()
1430 php_stream_from_zval(stream, arg1); in PHP_FUNCTION()
1482 zval *arg1; in PHP_FUNCTION() local
1489 Z_PARAM_RESOURCE(arg1) in PHP_FUNCTION()
1493 php_stream_from_zval(stream, arg1); in PHP_FUNCTION()
/PHP-8.1/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_simple_rpcenc_013w.phpt10 $client->echoMultipleFaults3(2,"arg1","arg2");
18 …whichFault xsi:type="xsd:int">2</whichFault><param1 xsi:type="xsd:string">arg1</param1><param2 xsi…
H A Dr4_groupH_complex_doclit_005w.phpt23 $s1 = new SOAPStruct('arg1',34,325.325);
36 …ults1Request><ns1:whichFault>2</ns1:whichFault><ns1:param1><ns2:varString>arg1</ns2:varString><ns2…
/PHP-8.1/ext/soap/tests/
H A Dcustom_content_type.phpt43 $client->__soapCall("foo", [ 'arg1' => "XXXbar"]);
69 $client2->__soapCall("foo", [ 'arg1' => "XXXbar"]);
/PHP-8.1/ext/standard/tests/strings/
H A Dsprintf_variation1.phpt12 $arg1 = "second arg";
81 var_dump(sprintf($value, $arg1));
88 var_dump(sprintf($value, $arg1, $arg2));
/PHP-8.1/Zend/tests/
H A Dbug38779.phpt25 function stream_set_option($option, $arg1, $arg2) {
H A Dbug78340.phpt40 function stream_set_option($option, $arg1, $arg2) {
H A Dgh10072.phpt47 public function stream_set_option(int $option, int $arg1, ?int $arg2): bool
/PHP-8.1/ext/phar/
H A Dgdbhelp25 if $arg1 == 0
97 if (*(phar_entry_info *)$m->pData).filename[0] == $arg1[0]
/PHP-8.1/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt20 function stream_set_option($option, $arg1, $arg2) {
21 echo "option: ", $option, ", ", $arg1, ", ", $arg2, "\n";
/PHP-8.1/sapi/apache2handler/
H A Dapache_config.c89 static const char *real_flag_hnd(cmd_parms *cmd, void *dummy, const char *arg1, const char *arg2, i… in real_flag_hnd() argument
100 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd()
/PHP-8.1/ext/soap/tests/bugs/
H A Dbug31695.phpt35 array("arg1"),
/PHP-8.1/sapi/phpdbg/tests/
H A Dphpdbg_get_executable_stream_wrapper.phpt62 public function stream_set_option($option, $arg1, $arg2) { return false; }
/PHP-8.1/ext/standard/tests/file/
H A Dfopencookie.phpt79 function stream_set_option($option, $arg1, $arg2) {
H A Dinclude_streams.phpt99 function stream_set_option($option, $arg1, $arg2) {
/PHP-8.1/ext/spl/
H A Dspl_directory.c458 zval arg1; in spl_filesystem_object_create_info() local
473 ZVAL_STR_COPY(&arg1, file_path); in spl_filesystem_object_create_info()
474 …call_method_with_1_params(Z_OBJ_P(return_value), ce, &ce->constructor, "__construct", NULL, &arg1); in spl_filesystem_object_create_info()
475 zval_ptr_dtor(&arg1); in spl_filesystem_object_create_info()
487 zval arg1, arg2; in spl_filesystem_object_create_type() local
513 ZVAL_STR_COPY(&arg1, source->file_name); in spl_filesystem_object_create_type()
514 …call_method_with_1_params(Z_OBJ_P(return_value), ce, &ce->constructor, "__construct", NULL, &arg1); in spl_filesystem_object_create_type()
515 zval_ptr_dtor(&arg1); in spl_filesystem_object_create_type()
550 ZVAL_STR_COPY(&arg1, source->file_name); in spl_filesystem_object_create_type()
552 …thod_with_2_params(Z_OBJ_P(return_value), ce, &ce->constructor, "__construct", NULL, &arg1, &arg2); in spl_filesystem_object_create_type()
[all …]

Completed in 45 milliseconds

123456