preg_match()
1 つの一致を与えます。
preg_match_all()
すべての一致を返します。
preg_split()
すべての分割を返します。
最初の試合でのみ分割するにはどうすればよいですか?
例:
preg_split("~\n~", $string);
これは私が欲しいものです:
array(
0 => 'first piece',
1 => 'the rest of the string
without any further splits'
)