Warning: preg_match(): Internal pcre_fullinfo()
问题 I have the following working code: $test = '123456'; $int = preg_match('/^\d+$/', $test, $matches); print_r(array($int, $matches)); However when I execute it on codepad I get the error: Warning: preg_match(): Internal pcre_fullinfo() error -3 on line 5 But the code is running on my own machine (and the code should be fine IMHO). I need to distribute my code in the future so it would be bad if it would break depending on some config. So what is the reason codepad breaks on it? 回答1: Code