运行 ❯
获取你
自有 PHP
服务器
×
更改方向
更改主题,深色/浅色
转至 Spaces
<!DOCTYPE html> <html> <body> <?php $str = "age:30 weight:60kg"; sscanf($str,"age:%d weight:%dkg",$age,$weight); // show types and values var_dump($age,$weight); ?> </body> </html>
int(30) int(60)