0
大きな文字列とアレリオティブな文字列を持つ文字列$content
があります。私は$content
を爆発させたい、区切り文字は配列$array_explode
のどの値の最初の発生であった。誰か助けてくれますか?そのようなPHP:配列デリミタで爆発する
何か:
$content="...";
$array_explode = array("<br>", "<p>", "<h2>", "<h1>", "<h3>");
$content_explode = explode($array_explode, $content);
それは、私はあなたがこのためにDOM関数を使用したほうが良いと思う 'preg_split' –
です。これらは、XML/HTMLマークアップ用に特別に設計されています。 – Devon
http://stackoverflow.com/questions/2860238/exploding-by-array-of-delimiters – yafater