在阅读有关 PHP 构造函数的信息时,我在此页面上遇到了以下示例。
<?php
class MyClass {
// use a unique id for each derived constructor,
// and use a null reference to an array,
// for optional parameters
function __construct($id="", $args=null) {
// parent constructor called first ALWAYS
/*Remaining code here*/
}
}
我无法理解为什么$id
设置为""
和。我什么时候会使用这样的东西?为什么我们不能只使用.$args
null
function __construct($id, $args) {