Ben PHP OOP kavramları yeni bir adam değilim. Ben sadece script başında kez yazarak birden fazla sınıflar için bir php komut dosyası dahil olamayacağını gözüme ilk şeylerden biri. Yani
<?php
include 'var.php';
class userSession{
/* all the code */
public function getVariables(){
/* use of variables which are inside var.php */
}
public function getOtherVariables(){
/* use of variables which are inside var.php */
}
}
?>
Bu işe yaramazsa.
Bunu yapmak zorunda -
<?php
class userSession{
/* all the code */
public function getVariables(){
include 'var.php';
/* use of variables which are inside var.php */
}
public function getOtherVariables(){
include 'var.php';
/* use of variables which are inside var.php */
}
}
?>
Kaçırdığım bir şey var?