私はpreg_split()とsplit()を使おうとしています(そして両方を試しました)が、どちらもうまくいきませんでした。これが試みとアウトプットです。
preg_split("^", "ItemOne^ItemTwo^Item.Three^");
//output - null or false when attempting to implode() it.
preg_split("\^", "ItemOne^ItemTwo^Item.Three^");
//output - null or false when attempting to implode() it. Attempted to escape the needle.
//SAME THING WITH split().
あなたの助けをありがとう...クリスチャンスチュワート