我有以下工作代码:$test='123456';$int=preg_match('/^\d+$/',$test,$matches);print_r(array($int,$matches));但是,当我executeitoncodepad时,出现错误:Warning:preg_match():Internalpcre_fullinfo()error-3online5但是代码是在我自己的机器上运行的(恕我直言,代码应该没问题)。我需要在将来分发我的代码,所以如果它根据某些配置而中断,那就太糟糕了。那么键盘坏掉的原因是什么? 最佳答案