I have a text-block, with this content:
[/+]There is my first text[+/]. There is my second text.
[/+]There is my third text.[+/]
There is my fourth text.
...
Now, I want to split it into 2 strings:
$str_1 = "There is my first text.";
$str_2 = " There is my second text.
[/+]There is my third text.[+/]
There is my fourth text. ...";
Could you show me: "How to split a text-block into 2 strings, in PHP?".