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) {