- Deprecations and Changes for PHP 7.3 [Avoid Errors]
preg_match('/[\w-.]+/', ''); // this will not work in PHP7.3 preg_match('/[\w\-.]+/', ''); // the hyphen need to be escaped
PHP 兼容性笔记(不定期更新)
最新推荐文章于 2024-05-31 12:06:44 发布
preg_match('/[\w-.]+/', ''); // this will not work in PHP7.3
preg_match('/[\w\-.]+/', ''); // the hyphen need to be escaped