私は、クリーンアップして配列に入れたいので、mysqlで検索できます。PHPは何かを配列に分解しますが、その間の値を使用します
// Here's one example of what the string might have:
$string1 = "(1) *value1* *value2*; (2) *value3* *value4* *value5*; (3) *value6*";
// And here's another possibility:
$string2 = "*value1* *value2* *value3* *value4*";
// I want to remove all the "(#)" stuff, and explode all the values into an array
// This is what I have so far:
// $string can be like the examples $string1 or $string2
$string_clean = str_replace("* *","",trim(preg_replace("/\((\d)\)/i", "", $string)));
$my_array = explode('*', trim($string_clean, '*'));
しかし、これは私が取得していますものです:
Array ([0] => value1 [1] => [2] => value2 [3] => [4] => value3 [5] => [6] => value4 [7] => [8] => value5)
を私はちょうど配列からすべての空の項目を削除する機能を見つけることができると仮定し、しかし、これを行うより効果的な方法があるのだろうかと思います。
値にスペースが含まれていないと、 'str_replace()'で '*'と ';'、 '' preg_repalce() '' '(#)'、 '' 'すべての値を取得します。 –