" - "の前後にある単語をPHPで区切りたい。私はスペースを運ぶテキストと " - "の後ろにあるテキストを分けることができません。phpを使って " - "の前後に単語を壊す方法は?
<?php
$value="this | is : my , text - test , done > hello-hi";
$keywords = preg_split("/[,|:&>]+/", $value);
print_r($keywords);
?>
回答M得る: アレイ([0] =>この[1] => [2] =>私の[3] =>テキストさ - 試験[4] =>行わ[5] = > hello-hi)
回答:私はこのようになります: Array [0] => this [1] =>は[2] => my [3] => text [4] => test [ 5] => [6] =>こんにちは-HI)
'爆発( ' - '、$ valueが、2) ' - ' とそれの後に'の後に文字列を区切ります。 –
http://php.net/manual/en/function.explode.php – Dimi
私はexplodeを使用した後も必要な結果を得られません。 @Pheagey –