TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

41 lines
986 B

--TEST--
Test sscanf() function : basic functionality - integer format
--SKIPIF--
<?php
echo 'skip AOT limitation';
?>
--FILE--
<?php
/*
* Testing sscanf() : basic functionality
*/
echo "*** Testing sscanf() : basic functionality - using integer format ***\n";
$str = "Part: Widget Serial Number: 1234789 Stock: 25";
$format = "Part: %s Serial Number: %d Stock: %d";
echo "\n-- Try sccanf() WITHOUT optional args --\n";
// extract details using short format
list($part, $number, $stock) = sscanf($str, $format);
var_dump($part, $number, $stock);
echo "\n-- Try sccanf() WITH optional args --\n";
// extract details using long format
$res = sscanf($str, $format, $part, $number, $stock);
var_dump($res, $part, $number, $stock);
?>
--EXPECT--
*** Testing sscanf() : basic functionality - using integer format ***
-- Try sccanf() WITHOUT optional args --
string(6) "Widget"
int(1234789)
int(25)
-- Try sccanf() WITH optional args --
int(3)
string(6) "Widget"
int(1234789)
int(25)