Why does this preg_replace call return NULL?

二次信任 提交于 2021-02-05 09:16:06

问题


Why does this call return NULL? Is the regex wrong? With the test input it doesn't return NULL. The docs say NULL indicates an error but what error could it be?

$s = hex2bin('5b5d202073205b0d0a0d0a0d0a0d0a20202020202020203a');
// $s = 'test';
$s = preg_replace('/\[\](\s|.)*\]/s', '', $s);
var_dump($s);

// PHP 7.2.10-1+0~20181001133118.7+stretch~1.gbpb6e829 (cli) (built: Oct  1 2018 13:31:18) ( NTS )

回答1:


Your regex is causing catastrophic backtracking and causing PHP regex engine to fail. You can use preg_last_error() function to check this.

$r = preg_replace("/\[\](\s|.)*\]/s", "", $s);
if (preg_last_error() == PREG_BACKTRACK_LIMIT_ERROR) {
    print 'Backtrack limit was exhausted!';
}

Output:

Backtrack limit was exhausted!

You are getting NULL return value from preg_replace due to this error. As per PHP doc of preg_replace:

If matches are found, the new subject will be returned, otherwise subject will be returned unchanged or NULL if an error occurred.


Fix: You don't need (\s|.) when using s modifier (DOTALL). since dot matches any character including newline when using s modifier.

You should just use this regex:

$r = preg_replace('/\[\].*?\]/s', "", $s);
echo preg_last_error();
//=> 0


来源:https://stackoverflow.com/questions/53016134/why-does-this-preg-replace-call-return-null

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!