preg_match_all(): Compilation failed: invalid range in character class at of
升級 php 到 7.3.8
之後使用 preg_match_all()
這個函式報了這個錯,檢查發現是正規表示式裡面用了 -
解決方法是
you can write:
[-a-z0-9_\s]
[a-z0-9_\s-]
[a-z0-9-_\s]
[a-z-0-9_\s]
[a-z0-9\s-_]
[a-z0-9_\-\s]
but not:
[a-z0-9_-\s]
參考地址 http://quabr.com/27426645/preg-match-compi...
目前已知 bupt1987/html-parser
https://github.com/bupt1987/html-parser 這個包中會碰到這個問題
本作品採用《CC 協議》,轉載必須註明作者和本文連結