使用PHP在字符串的开头获取一个int

时间:2013-12-08 19:21:27

标签: php regex

假设我有:

$yeah='71263andsomemore632';

如何我可以得到两个这样的变量:

$intAtBeginning=71263;
$theRest='andsomemore632';

我真的不知道怎么做,因为两个整数可能有不同的长度。我保证,我会研究你帮助我的任何事情,理解它并在今天睡觉开心;)

感谢。

1 个答案:

答案 0 :(得分:4)

一种简单的方法是使用sscanf

list($intAtBeginning, $theRest) = sscanf($yeah, '%d%s');
echo $intAtBeginning.'<br>'.$theRest;