I wanna make object from another class in other one. so I done it:
class National_Number{
private $num = array();
public function __construct($first = NULL,$second = NULL,$third = NULL) {
$this->set($first,0);
$this->set($second,1);
$this->set($third,2);
}
public function set($num = NULL,$part = 0)
{
if ($num != NULL AND $part num[$part] = $num;
else
return FALSE;
}
else
{
return FALSE;
}
}
public function get($part = 0)
{
if ($part num[$part];
else
return FALSE;
}
}
class Temp {
private $ID;
public function __construct() {
$ID = new National_Number(127,110,8100);
}
public function _get()
{
var_dump($ID->get());
}
}
$temp = new Temp();
$temp->_get();
the national code will work correctly,but the Temp class will not work,where is the problem?