いつものようにテキトーに書いてたらエラー出た件。 protected function _isCancel() { $testArg = $this->_getParam('cancel'); return ($this->_getParam('cancel') && isset($this->_getParam('cancel'))) ? true : false; } こんなの書いたらエラー出た。 Fatal error: Can't use method return value in write context in path/to/phpfile.php on line xx何が悪いんだと思ったら、どうやら isset($this->_getParam('cancel')) こいつの書き方が悪かったらしい。 なぜかと思って調べてみたら http://pentan.info/php