标签: php string
如何使用php将此字符串转换为数组?提前谢谢你这里是字符串:
((-111.448843339275,56.8746856298617))
答案 0 :(得分:1)
$str = '((-111.448843339275,56.8746856298617))'; $str = str_replace ( array('((','))') , '', $str); $array = explode(',',$str);