这是我的 include.php:
<?php
class cars {
protected $_car;
public function __costruct($carName) {
$this->_car = $carName;
}
public function getcarname (){
return $this->_car;
}
}?>
这是我的 index.php
<?php
require_once 'include.php';
$selling = new cars('Ford');
echo $selling->getcarname();
?>
仍然回声什么都没有!你可以说我是新手,但我知道 php,处理它有点复杂,而且我发现它没有任何意义并且浪费代码,无论如何我还是想学习它,所以我的代码有什么问题?