I have content in this form
$content =\"This is a sample text where {123456} and {7894560} [\'These are samples\']{145789}\";
This is a sample text where {123456} and {7894560} [\'These are samples\']{145789}
DEMO :https://eval.in/84197
$content ="This is a sample text where {123456} and {7894560} ['These are samples']{145789}"; preg_match_all('/{(.*?)}/', $content, $matches); foreach ($matches[1] as $a ){ echo $a." "; }
This is a sample text where {123456} and {7894560} ['These are samples']{145789}
Output:
123456 7894560 145789