如何使用explode将字符串转换为数组?

时间:2014-09-16 11:35:49

标签: php string

如何使用php将此字符串转换为数组?提前谢谢你这里是字符串:

((-111.448843339275,56.8746856298617))

1 个答案:

答案 0 :(得分:1)

$str = '((-111.448843339275,56.8746856298617))';
$str = str_replace ( array('((','))') , '', $str);
$array = explode(',',$str);