Forum Moderators: coopster
my work as following, but it does not work.
i want to break the string into two part, one is "this is the test 1", and another one is "this is testing 2 </object> this is test 3";
$string = "this is the test 1 <object width=\"425\" height=\"355\"> this is testing 2 </object> this is test 3";
$str=split("<object(.?)>",$string);
echo $str[0];
echo "<br>";
echo $str[1];