Class test1
{
function __construct(){
// тут запрос в базу
$sql = "
SELECT
*
FROM
`razdel`
ORDER BY
id
";
$sql = mysql_query($sql);
while ($value = mysql_fetch_assoc($sql)){
$this->name[ $value['id'] ] = $value['name'];
}
}
}
Class test2
{
private function view() {
// как тут вызвать $this->name из test1 ?
}
}
через дополнительную функцию в test1 , в которой будет
public function return_name_array() {или как-то по другому ?
return $this->name;
}