Home
last modified time | relevance | path

Searched refs:arg1 (Results 26 – 50 of 208) sorted by relevance

123456789

/PHP-5.6/ext/standard/tests/strings/
H A Dsscanf_basic7.phpt18 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
19 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
23 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
24 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
H A Dprintf_basic2.phpt18 $arg1 = 111;
28 $result = printf($format1, $arg1);
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic4.phpt18 $arg1 = TRUE;
28 $result = printf($format1, $arg1);
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic5.phpt18 $arg1 = 65;
28 $result = printf($format1, $arg1);
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic6.phpt17 $arg1 = 1000;
27 $result = printf($format1, $arg1);
32 $result = printf($format2, $arg1, $arg2);
37 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dsscanf_basic6.phpt24 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
25 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
29 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
30 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
H A Dsprintf_error.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
20 $arg1 = 'one';
25 var_dump( sprintf($format2,$arg1) );
26 var_dump( sprintf($format3,$arg1,$arg2) );
30 var_dump( sprintf($format3,$arg1) );
H A Dprintf_basic7.phpt24 $arg1 = -1111;
34 $result = printf($format1, $arg1);
39 $result = printf($format2, $arg1, $arg2);
44 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic8.phpt23 $arg1 = 021;
33 $result = printf($format1, $arg1);
38 $result = printf($format2, $arg1, $arg2);
43 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dvsprintf_basic3.phpt22 $arg1 = array(11.11);
26 var_dump( vsprintf($format1,$arg1) );
27 var_dump( vsprintf($format11,$arg1) );
H A Dvsprintf_basic9.phpt22 $arg1 = array(11);
26 var_dump( vsprintf($format1,$arg1) );
27 var_dump( vsprintf($format11,$arg1) );
H A Dsprintf_variation2.phpt2 Test sprintf() function : usage variations - with all types of values for arg1 argument
5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
12 echo "*** Testing sprintf() : with different types of values passed for arg1 argument ***\n";
87 // loop through each element of the array for arg1
108 *** Testing sprintf() : with different types of values passed for arg1 argument ***
H A Dvprintf_basic3.phpt22 $arg1 = array(11.11);
26 $result = vprintf($format1,$arg1);
30 $result = vprintf($format11,$arg1);
H A Dvprintf_basic9.phpt22 $arg1 = array(11);
26 $result = vprintf($format1,$arg1);
29 $result = vprintf($format11,$arg1);
H A Dvfprintf_basic3.phpt22 $arg1 = array(11.11);
31 vfprintf($fp, $format1,$arg1);
34 vfprintf($fp,$format11,$arg1);
H A Dvfprintf_basic9.phpt22 $arg1 = array(11);
31 vfprintf($fp, $format1, $arg1);
33 vfprintf($fp, $format11, $arg1);
/PHP-5.6/ext/spl/
H A Dspl_engine.h33 … int spl_instantiate_arg_ex1(zend_class_entry *pce, zval **retval, int alloc, zval *arg1 TSRMLS_DC) in spl_instantiate_arg_ex1()
37 …mmon.function_name, strlen(pce->constructor->common.function_name), NULL, 1, arg1, NULL TSRMLS_CC); in spl_instantiate_arg_ex1()
43 …nstantiate_arg_ex2(zend_class_entry *pce, zval **retval, int alloc, zval *arg1, zval *arg2 TSRMLS_… in spl_instantiate_arg_ex2() argument
47 …mmon.function_name, strlen(pce->constructor->common.function_name), NULL, 2, arg1, arg2 TSRMLS_CC); in spl_instantiate_arg_ex2()
/PHP-5.6/ext/standard/
H A Dbrowscap.c150 if (!arg1) { in php_browscap_parser_cb()
161 if (!strcasecmp(Z_STRVAL_P(arg1), "parent") && in php_browscap_parser_cb()
195 new_key = pestrndup(Z_STRVAL_P(arg1), Z_STRLEN_P(arg1), persistent); in php_browscap_parser_cb()
196 zend_str_tolower(new_key, Z_STRLEN_P(arg1)); in php_browscap_parser_cb()
224 bdata->current_section_name = pestrndup(Z_STRVAL_P(arg1), in php_browscap_parser_cb()
225 Z_STRLEN_P(arg1), persistent); in php_browscap_parser_cb()
227 …zend_hash_update(bdata->htab, Z_STRVAL_P(arg1), Z_STRLEN_P(arg1) + 1, (void *) &bdata->current_sec… in php_browscap_parser_cb()
229 Z_STRVAL_P(processed) = Z_STRVAL_P(arg1); in php_browscap_parser_cb()
230 Z_STRLEN_P(processed) = Z_STRLEN_P(arg1); in php_browscap_parser_cb()
232 Z_STRVAL_P(unprocessed) = Z_STRVAL_P(arg1); in php_browscap_parser_cb()
[all …]
/PHP-5.6/tests/lang/
H A DreturnByReference.001.phpt6 function &returnByRef(&$arg1)
8 return $arg1;
H A DpassByReference_002.phpt6 function f(&$arg1)
8 var_dump($arg1++);
/PHP-5.6/ext/intl/locale/
H A Dlocale_class.c42 ZEND_ARG_INFO( 0, arg1 )
46 ZEND_ARG_INFO( 0, arg1 )
51 ZEND_ARG_INFO( 0, arg1 )
57 ZEND_ARG_INFO( 0, arg1 )
/PHP-5.6/ext/intl/transliterator/
H A Dtransliterator_methods.c319 zval **arg1; in PHP_FUNCTION() local
321 &arg1, &str, &str_len, &start, &limit ) == FAILURE ) in PHP_FUNCTION()
328 if( Z_TYPE_PP( arg1 ) == IS_OBJECT && in PHP_FUNCTION()
329 instanceof_function( Z_OBJCE_PP( arg1 ), Transliterator_ce_ptr TSRMLS_CC ) ) in PHP_FUNCTION()
331 object = *arg1; in PHP_FUNCTION()
336 if(Z_TYPE_PP( arg1 ) != IS_STRING ) in PHP_FUNCTION()
338 SEPARATE_ZVAL( arg1 ); in PHP_FUNCTION()
339 convert_to_string( *arg1 ); in PHP_FUNCTION()
343 res = create_transliterator( Z_STRVAL_PP( arg1 ), Z_STRLEN_PP( arg1 ), in PHP_FUNCTION()
349 "transliterator with ID \"%s\" (%s)", Z_STRVAL_PP( arg1 ), message ); in PHP_FUNCTION()
/PHP-5.6/sapi/apache/
H A Dmod_php5.c57 static CONST_PREFIX char *php_apache_value_handler(cmd_parms *cmd, HashTable *conf, char *arg1, cha…
59 static CONST_PREFIX char *php_apache_flag_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char…
815 per_dir_entry.key_length = strlen(arg1); in php_apache_value_handler_ex()
819 memcpy(per_dir_entry.key, arg1, per_dir_entry.key_length); in php_apache_value_handler_ex()
833 static CONST_PREFIX char *php_apache_value_handler(cmd_parms *cmd, HashTable *conf, char *arg1, cha… in php_apache_value_handler() argument
835 return php_apache_value_handler_ex(cmd, conf, arg1, arg2, PHP_INI_PERDIR); in php_apache_value_handler()
843 return php_apache_value_handler_ex(cmd, conf, arg1, arg2, PHP_INI_SYSTEM); in php_apache_admin_value_handler()
860 return php_apache_value_handler_ex(cmd, conf, arg1, bool_val, mode); in php_apache_flag_handler_ex()
866 static CONST_PREFIX char *php_apache_flag_handler(cmd_parms *cmd, HashTable *conf, char *arg1, char… in php_apache_flag_handler() argument
868 return php_apache_flag_handler_ex(cmd, conf, arg1, arg2, PHP_INI_PERDIR); in php_apache_flag_handler()
[all …]
/PHP-5.6/Zend/tests/variadic/
H A Dbasic.phpt14 function test2($arg1, $arg2, ...$args) {
15 var_dump($arg1, $arg2, $args);
/PHP-5.6/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_simple_doclit_012w.phpt11 "param1" => "arg1",
20 …:echoMultipleFaults3Request><ns1:whichFault>1</ns1:whichFault><ns1:param1>arg1</ns1:param1><ns1:pa…
22 …n response to 'echoMultipleFaults3'.</faultstring><detail><ns1:StringPart>arg1</ns1:StringPart></d…

Completed in 37 milliseconds

123456789