我有这个表格的内容
原文链接:https://www.f2er.com/regex/356721.html$content ="<p>This is a sample text where {123456} and {7894560} ['These are samples']{145789}</p>";
我需要数组中的大括号之间的所有值,如下所示:
array("0"=>"123456","1"=>"7894560","2"=>"145789")
我试过这个代码:
<?PHP preg_match_all("/\{.*}\/s",$content,$matches); ?>
但是,我从这个值得从第一个大括号到最后发现的内容.可以通过以上格式获取阵列?我知道我使用的模式是错误的.要获得上述所需的输出应该给予什么?