假设我有:
$yeah='71263andsomemore632';
如何我可以得到两个这样的变量:
$intAtBeginning=71263;
$theRest='andsomemore632';
我真的不知道怎么做,因为两个整数可能有不同的长度。我保证,我会研究你帮助我的任何事情,理解它并在今天睡觉开心;)
感谢。
答案 0 :(得分:4)
一种简单的方法是使用sscanf
list($intAtBeginning, $theRest) = sscanf($yeah, '%d%s');
echo $intAtBeginning.'<br>'.$theRest;