Home
last modified time | relevance | path

Searched refs:sscanf (Results 1 – 25 of 29) sorted by relevance

12

/PHP-7.4/ext/standard/tests/strings/
H A Dbug47842.phpt2 Bug #47842 sscanf() does not support 64-bit values
11 sscanf("2147483647", '%d', $int);
12 echo "sscanf 32-bit signed int '2147483647' (2^31)-1 = ",$int,"\n";
13 sscanf("4294967295", '%u', $int);
14 echo "sscanf 32-bit unsign int '4294967295' (2^32)-1 = ",$int,"\n";
16 sscanf("9223372036854775807", '%d', $int);
17 echo "sscanf 64-bit signed int '9223372036854775807' (2^63)-1 = ",$int,"\n";
18 sscanf("18446744073709551615", '%u', $int);
19 echo "sscanf 64-bit unsign int '18446744073709551615' (2^64)-1 = ",$int,"\n";
28 sscanf 32-bit signed int '2147483647' (2^31)-1 = 2147483647
[all …]
H A Dsscanf_error.phpt2 Test sscanf() function : error conditions
10 echo "*** Testing sscanf() : error conditions ***\n";
15 echo "\n-- Testing sscanf() function with no arguments --\n";
16 var_dump( sscanf() );
18 echo "\n-- Testing sscanf() function with one argument --\n";
19 var_dump( sscanf($str) );
23 var_dump( sscanf($str, $format, $str1, $str2, $extra_str) );
28 *** Testing sscanf() : error conditions ***
30 -- Testing sscanf() function with no arguments --
35 -- Testing sscanf() function with one argument --
[all …]
H A Dbug42107.phpt2 Bug #42107 (sscanf() broken when using %2$s type format parameters)
6 var_dump(sscanf('one two', '%1$s %2$s'));
7 var_dump(sscanf('one two', '%2$s %1$s'));
9 sscanf('one two', '%1$s %2$s', $foo, $bar);
11 sscanf('one two', '%2$s %1$s', $foo, $bar);
14 var_dump(sscanf('one two', '%1$d %2$d'));
15 var_dump(sscanf('one two', '%1$d'));
H A Dsscanf_basic1.phpt2 Test sscanf() function : basic functionality - string format
5 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 * Testing sscanf() : basic functionality
14 echo "*** Testing sscanf() : basic functionality - using string format ***\n";
21 list($part, $number, $stock) = sscanf($str, $format);
26 $res = sscanf($str, $format, $part, $number, $stock);
32 *** Testing sscanf() : basic functionality - using string format ***
H A Dsscanf_basic2.phpt2 Test sscanf() function : basic functionality - integer format
5 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 * Testing sscanf() : basic functionality
14 echo "*** Testing sscanf() : basic functionality - using integer format ***\n";
21 list($part, $number, $stock) = sscanf($str, $format);
26 $res = sscanf($str, $format, $part, $number, $stock);
32 *** Testing sscanf() : basic functionality - using integer format ***
H A Dsscanf_basic5.phpt2 Test sscanf() function : basic functionality - exponential format
6 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 echo "*** Testing sscanf() : basic functionality -using exponential format ***\n";
19 list($arg1, $arg2, $arg3, $arg4) = sscanf($str, $format1);
21 list($arg1, $arg2, $arg3, $arg4) = sscanf($str, $format2);
26 $res = sscanf($str, $format1, $arg1, $arg2, $arg3, $arg4);
28 $res = sscanf($str, $format2,$arg1, $arg2, $arg3, $arg4);
35 *** Testing sscanf() : basic functionality -using exponential format ***
H A Dbug47322.phpt2 Bug #47322 (sscanf %d doesn't work)
6 sscanf(":59:58","%s:%d:%f", $a, $b, $c);
9 sscanf("15:01:58.2","%d:%f:%f", $a, $b, $c);
12 sscanf("15.1111::foo","%f:%d:%s", $a, $b, $c);
H A Dsscanf_basic8.phpt2 Test sscanf() function : basic functionality - hexadecimal format
6 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 echo "*** Testing sscanf() : basic functionality - - using hexadecimal format ***\n";
19 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format1);
21 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format2);
26 $res = sscanf($str, $format1, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
28 $res = sscanf($str, $format2, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
34 *** Testing sscanf() : basic functionality - - using hexadecimal format ***
H A Dsscanf_basic3.phpt2 Test sscanf() function : basic functionality - float format
6 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 echo "*** Testing sscanf() : basic functionality -- using float format ***\n";
18 list($part, $length, $width, $depth) = sscanf($str, $format);
23 $res = sscanf($str, $format, $part, $length, $width, $depth);
29 *** Testing sscanf() : basic functionality -- using float format ***
H A Dsscanf_basic4.phpt2 Test sscanf() function : basic functionality - char format
6 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 echo "*** Testing sscanf() : basic functionality - using char format ***\n";
18 list($arg1, $arg2, $arg3, $arg4) = sscanf($str, $format);
23 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4);
29 *** Testing sscanf() : basic functionality - using char format ***
H A Dsscanf_basic7.phpt2 Test sscanf() function : basic functionality - octal format
6 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
11 echo "*** Testing sscanf() : basic functionality - using octal format ***\n";
18 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
23 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
29 *** Testing sscanf() : basic functionality - using octal format ***
H A Dsscanf_basic6.phpt2 Test sscanf() function : basic functionality - unsigned format
12 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
17 echo "*** Testing sscanf() : basic functionality - using unsigned format ***\n";
24 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
29 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
35 *** Testing sscanf() : basic functionality - using unsigned format ***
H A Dbug38322.phpt2 Bug #38322 (reading past array in sscanf() leads to segfault/arbitrary code execution)
7 var_dump(sscanf("a ",'%1$s',$str));
H A Dbug27295.phpt2 Bug #27295 (memory leak inside sscanf())
8 sscanf( $string, "%s = %[^[]]", $var, $val );
H A Dbug21730.phpt12 sscanf($foo, $fmt, $res_a[0], $res_a[1], $res_a[2]);
14 $res_b = sscanf($foo, $fmt);
/PHP-7.4/ext/gd/libgd/
H A Dgd_xbm.c57 if (sscanf(fline, "#define %s %d", iname, &value) == 2) { in gdImageCreateFromXbm()
71 if ( sscanf(fline, "static unsigned char %s = {", iname) == 1 in gdImageCreateFromXbm()
72 || sscanf(fline, "static char %s = {", iname) == 1) in gdImageCreateFromXbm()
75 } else if (sscanf(fline, "static unsigned short %s = {", iname) == 1 in gdImageCreateFromXbm()
76 || sscanf(fline, "static short %s = {", iname) == 1) in gdImageCreateFromXbm()
139 if (sscanf(h, "%x", &b) != 1) { in gdImageCreateFromXbm()
/PHP-7.4/ext/sodium/
H A Dsodium_pwhash.c135 sscanf(p, "v=" ZEND_LONG_FMT "$m=" ZEND_LONG_FMT ",t=" ZEND_LONG_FMT ",p=" ZEND_LONG_FMT, in php_sodium_argon2_get_info()
/PHP-7.4/ext/standard/
H A Dpassword.c206 sscanf(ZSTR_VAL(hash), "$2y$" ZEND_LONG_FMT "$", &cost); in php_password_bcrypt_get_info()
222 sscanf(ZSTR_VAL(hash), "$2y$" ZEND_LONG_FMT "$", &old_cost); in php_password_bcrypt_needs_rehash()
329 sscanf(p, "v=" ZEND_LONG_FMT "$m=" ZEND_LONG_FMT ",t=" ZEND_LONG_FMT ",p=" ZEND_LONG_FMT, in extract_argon2_parameters()
H A Dphp_string.h86 PHP_FUNCTION(sscanf);
H A Dftp_fopen_wrapper.c849 …n = sscanf(p, "%4u%2u%2u%2u%2u%2u", &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, &tm.tm_min,… in php_stream_ftp_url_stat()
H A Dimage.c1035 if (sscanf(fline, "#define %s %d", iname, &value) == 2) { in php_get_xbm()
/PHP-7.4/ext/opcache/
H A Dshared_alloc_win32.c283 if (sscanf(s, "%p", &default_mapping_base_set[0]) != 1) { in create_segments()
/PHP-7.4/ext/com_dotnet/
H A Dcom_typeinfo.c151 if (2 != sscanf(version, "%d.%d", &major_tmp, &minor_tmp)) { in php_com_load_typelib()
/PHP-7.4/ext/ftp/
H A Dftp.c871 n = sscanf(ptr, "%lu,%lu,%lu,%lu,%lu,%lu", &b[0], &b[1], &b[2], &b[3], &b[4], &b[5]); in ftp_pasv()
1182 …n = sscanf(ptr, "%4u%2u%2u%2u%2u%2u", &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, &tm.tm_mi… in ftp_mdtm()
/PHP-7.4/ext/soap/
H A Dphp_http.c1459 if (sscanf(headerbuf, "%x", &buf_size) > 0 ) { in get_http_body()

Completed in 56 milliseconds

12