我想讨论三件事:
1. 学习 Ajax 的好资源在哪里?我看过这个网站,但它不包含太多信息:
http
:
//www.php-learn-it.com/tutorials/starting_with_php_and_ajax.html 2. 哪里有学习 OOP 的好资源?我已经在这个网站上完成了所有步骤:
http ://www.killerphp.com/tutorials/object-oriented-php/但它是从 2007 年开始的。
* 3 解决了!*
3.还有一个关于killerphp教程的问题;
为什么我会收到此错误:
Notice: Undefined variable: name in C:\xampp\htdocs\class_lib.php on line 11
致命错误:无法访问第 11 行 C:\xampp\htdocs\class_lib.php 中的空属性
使用此代码(index.php):
<?php
$william = new person("William N");
echo "<p>name: ". $william->get_name()."</p>";
?>
这在 class_lib.php 中:
class person {
var $name;
function __construct($persons_name)
{
$this->name = $persons_name;
}
public function get_name()
{
return $this->$name;
}
}