Ilan ve bir kamu sınıf değişkeni ayarı bu yöntemler arasında herhangi bir fark var mı? Eğer diğer üzerinden bir seçsin herhangi bir neden var mı?
Method 1
class example {
public $myArray;
function __construct() {
$this->myArray = array(1, 2, 3);
}
function showVar() {
print_r( $this->myArray );
}
}
Method 2
class example {
public $myArray = array(1, 2, 3);
function showVar() {
print_r( $this->myArray );
}
}