标签: php
如何从以下变量
$phone = “No +93-332-1121545”;
变量中可能有一些我不需要的空格和其他字符。
我只需要
$cleanPhone = “+933321121545”;
答案 0 :(得分:1)
使用preg_replace()删除您想要的字符以外的任何字符。
preg_replace()
$cleanPhone = preg_replace('/[^\d+]/', '', $phone);