PHP技術分享-提取字串中的數字

vip1888發表於2018-02-24
<?php
$str= `水電費100元`;
// 提取字串中的數字
echo preg_replace(`/D/s`, “, $str);
?>


相關文章