Yii中,可以这样创建生成一个对象:$response = new yii\web\Response;
$response = new yii\web\Response;
$response->on('beforeSend', funciton($event){
//
});
这里没有括号(new yii\web\Response();
),这是怎么做到的呢?
这个是初始化一个对象没错吧?
Yii中,可以这样创建生成一个对象:$response = new yii\web\Response;
$response = new yii\web\Response;
$response->on('beforeSend', funciton($event){
//
});
这里没有括号(new yii\web\Response();
),这是怎么做到的呢?
这个是初始化一个对象没错吧?
2 回答2.8k 阅读✓ 已解决
1 回答1.2k 阅读✓ 已解决
1 回答976 阅读✓ 已解决
1 回答906 阅读
1 回答1.3k 阅读
3 回答807 阅读
2 回答860 阅读
如果构造函数没有必传参数的话是可以的