1

我基本上需要从我的 PHP 类中调用两个构造函数之一,这取决于是否需要验证。

我当前的代码如下所示:

class Event extends Generic {

    private $user_id;

    function __construct($user_id=null) {
        $this->user_id = $user_id;
    }

    public function verify($user_id=null, $identifier=null) {

        if (parent::verifyUser($user_id, $identifier)) {
            return new Event($user_id);
        }
        else {
            // what gets retruend here in the event of a failure???
        }
    }

    public function noverify($user_id=null) {
        return new Event(user_id);
    }
}

像这样调用代码:

$event = new Event();
$obj1 = $event->noverify(5);
$obj2 = $event->verify(5, 100);

如果内部条件失败,我真的不清楚我应该如何处理构造函数失败的事件。我在这里走错路了吗?

4

1 回答 1

1

我要么抛出异常,要么返回FALSE

else {
    throw new Exception('verification failed');
}

或者

else {
    return FALSE;
}
于 2013-07-23T14:07:40.173 回答