最赞回答 / Mext
先看看这个函数的意思:preg_replace($pattern , $replacement , $subject);搜索subject中匹配pattern的部分,
以replacement进行替换.在左侧例子中,$pattern = '/(\w+) (\d+), (\d+)/i';$replacement = '$3, ${1} $2';注意$pattern中的括号,它一共用三个括号括起来了内容,表示有三个子组:$1、$2、$3,分别代表着(\w+)、(\d+)、(\d+).需要注意的是,$1等...
2014-10-03
最赞回答 / 隋小闹
这个个类 异常处理类 文档里有具体介绍 class Exception { protected $message = 'Unknown exception'; // 异常信息 protected $code = 0; // 用户自定义异常代码 protected $file; // 发生异常的文件名 protected $line; // 发生异常的代码行号 function __construct($message = null, $code = 0); final function getMessag...
2014-10-03