PHP 將字符串中的數字轉化為數組


$str ='現在是2019年11月18日下午17點25分';
$result='';
$arr=[];
for($i=0;$i<strlen($str);$i++){
if(is_numeric($str[$i])){
$result.=$str[$i];
}else{
if($result!="") {
$arr[] = $result;
$result="";
}
}
}


打印數據:

  Array
  (
    [0] => 2019
    [1] => 11
    [2] => 18
    [3] => 17
    [4] => 25
  )

 

 

參考鏈接:https://blog.csdn.net/jiangnanqbey/article/details/81354968 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM