PEARをPHP5.3などで動かすとして、
strict standards non-static method pear
とでるときがあるが、
それの対処方法は、対象の関数の前にstaticを宣言するといいそうだ。
$pager = Pager::factory($params);
static function &factory($options = array()) {
Go to list of users who liked
More than 5 years have passed since last update.
PEARをPHP5.3などで動かすとして、
strict standards non-static method pear
とでるときがあるが、
それの対処方法は、対象の関数の前にstaticを宣言するといいそうだ。
$pager = Pager::factory($params);
static function &factory($options = array()) {
Register as a new user and use Qiita more conveniently
Go to list of users who liked