提取花括号正则表达式php之间的所有值

提取花括号正则表达式php之间的所有值,第1张

提取括号正则表达式php之间的所有值

像这样…

<?php$content ="<p>This is a sample text where {123456} and {7894560} ['These are samples']{145789}</p>";preg_match_all('/{(.*?)}/', $content, $matches);print_r(array_map('intval',$matches[1]));

输出:

Array(    [0] => 123456    [1] => 7894560    [2] => 145789)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5014931.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存