我想分開使用php的「 - 」之前和之後的單詞。我無法分開帶有空格的文本和「 - 」之後的文本。如何打破前後「 - 」使用PHP?
<?php
$value="this | is : my , text - test , done > hello-hi";
$keywords = preg_split("/[,|:&>]+/", $value);
print_r($keywords);
?>
回答米獲得: 陣列([0] =>將此[1] =>是[2] =>我的[3] =>文本 - 試驗[4] =>完成[5] = >你好嗨)
答案我想要會是這樣的: Array([0] => this [1] => [2] => my [3] => text [4] => test [ 5] =>完成[6] =>你好喜)
'爆炸( ' - ',$值,2)'將串分離成後的 ' - ' 和之後。 –
http://php.net/manual/en/function.explode.php – Dimi
我沒有得到結果,因爲我需要使用爆炸後也。 @Pheagey –