/PHP-7.2/ext/standard/tests/strings/ |
H A D | bug47842.phpt | 2 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 D | sscanf_error.phpt | 2 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 D | bug42107.phpt | 2 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 D | sscanf_basic5.phpt | 2 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 D | sscanf_basic1.phpt | 2 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 D | sscanf_basic2.phpt | 2 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 D | sscanf_variation2.phpt | 2 Test sscanf() function : usage variations - unexpected inputs for '$format' argument 5 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] ) 10 echo "*** Testing sscanf() function: with unexpected inputs for 'format' argument ***\n"; 72 // loop through with each element of the $inputs array to test sscanf() function 76 var_dump( sscanf($str, $input) ); 85 *** Testing sscanf() function: with unexpected inputs for 'format' argument *** 112 Warning: sscanf() expects parameter 2 to be string, array given in %s on line %d 116 Warning: sscanf() expects parameter 2 to be string, array given in %s on line %d 120 Warning: sscanf() expects parameter 2 to be string, array given in %s on line %d 145 Warning: sscanf() expects parameter 2 to be string, resource given in %s on line %d
|
H A D | sscanf_variation1.phpt | 2 Test sscanf() function : usage variations - unexpected inputs for '$str' argument 5 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] ) 10 echo "*** Testing sscanf() function: with unexpected inputs for 'str' argument ***\n"; 72 // loop through with each element of the $inputs array to test sscanf() function 76 var_dump( sscanf($input, $format) ); 85 *** Testing sscanf() function: with unexpected inputs for 'str' argument *** 128 Warning: sscanf() expects parameter 1 to be string, array given in %s on line %d 132 Warning: sscanf() expects parameter 1 to be string, array given in %s on line %d 136 Warning: sscanf() expects parameter 1 to be string, array given in %s on line %d 163 Warning: sscanf() expects parameter 1 to be string, resource given in %s on line %d
|
H A D | bug47322.phpt | 2 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 D | sscanf_basic8.phpt | 2 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 D | sscanf_basic3.phpt | 2 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 D | sscanf_basic4.phpt | 2 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 D | sscanf_basic7.phpt | 2 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 D | sscanf_basic6.phpt | 2 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 D | bug27295.phpt | 2 Bug #27295 (memory leak inside sscanf()) 8 sscanf( $string, "%s = %[^[]]", $var, $val );
|
H A D | bug38322.phpt | 2 Bug #38322 (reading past array in sscanf() leads to segfault/arbitrary code execution) 7 var_dump(sscanf("a ",'%1$s',$str));
|
H A D | bug21730.phpt | 12 sscanf($foo, $fmt, $res_a[0], $res_a[1], $res_a[2]); 14 $res_b = sscanf($foo, $fmt);
|
/PHP-7.2/ext/gd/libgd/ |
H A D | gd_xbm.c | 57 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.2/ext/standard/ |
H A D | password.c | 183 sscanf(ZSTR_VAL(hash), "$2y$" ZEND_LONG_FMT "$", &cost); in PHP_FUNCTION() 195 …sscanf(ZSTR_VAL(hash), "$%*[argon2i]$v=" ZEND_LONG_FMT "$m=" ZEND_LONG_FMT ",t=" ZEND_LONG_FMT ",p… in PHP_FUNCTION() 247 sscanf(ZSTR_VAL(hash), "$2y$" ZEND_LONG_FMT "$", &cost); in PHP_FUNCTION() 273 …sscanf(ZSTR_VAL(hash), "$%*[argon2i]$v=" ZEND_LONG_FMT "$m=" ZEND_LONG_FMT ",t=" ZEND_LONG_FMT ",p… in PHP_FUNCTION()
|
H A D | php_string.h | 90 PHP_FUNCTION(sscanf);
|
/PHP-7.2/ext/interbase/ |
H A D | ibase_blobs.c | 60 return sscanf(id, BLOB_ID_MASK, (ISC_UINT64 *) qd); in _php_ibase_string_to_quad() 63 if (sscanf(id, BLOB_ID_MASK, &res)) { in _php_ibase_string_to_quad()
|
H A D | ibase_query.c | 513 if (!sscanf(Z_STRVAL_P(val), "%Lf", &l)) { in _php_ibase_bind_array() 564 if (!sscanf(Z_STRVAL_P(val), "%" LL_MASK "d", &l)) { in _php_ibase_bind_array() 586 n = sscanf(Z_STRVAL_P(val), "%d%*[/]%d%*[/]%d %d%*[:]%d%*[:]%d", in _php_ibase_bind_array() 604 n = sscanf(Z_STRVAL_P(val), "%d%*[/]%d%*[/]%d", &t.tm_mon, &t.tm_mday, &t.tm_year); in _php_ibase_bind_array() 621 n = sscanf(Z_STRVAL_P(val), "%d%*[:]%d%*[:]%d", &t.tm_hour, &t.tm_min, &t.tm_sec); in _php_ibase_bind_array()
|
/PHP-7.2/ext/opcache/ |
H A D | shared_alloc_win32.c | 306 if (sscanf(s, "%p", &default_mapping_base_set[0]) != 1) { in create_segments()
|
/PHP-7.2/ext/com_dotnet/ |
H A D | com_typeinfo.c | 126 if (2 != sscanf(version, "%d.%d", &major_tmp, &minor_tmp)) { in php_com_load_typelib()
|
/PHP-7.2/ext/ftp/ |
H A D | ftp.c | 868 n = sscanf(ptr, "%lu,%lu,%lu,%lu,%lu,%lu", &b[0], &b[1], &b[2], &b[3], &b[4], &b[5]); in ftp_pasv() 1176 …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()
|