We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed last year.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您是否正在寻找 PHP 中的
while(find next match){ do stuff }
等效项(不使用preg_match_all
)?在这种情况下,请使用
preg_match
和 offset 参数。例如:Are you looking for the
while(find next match){ do stuff }
equivalent in PHP (without usingpreg_match_all
)?In that case use
preg_match
with the offset parameter. For example: