我在PHP中有一个脚本,它给了我一个错误:
尝试在/home/include/common.php第20行获取非对象的属性
这是文件common.php
function Template($name, $type = -1) {
// todo: default $name from the script name withouth the extension?
$this->path = Template::getPath($name, $type);// this is the line 20
// todo: verify the existance of the file
// and throw the fatal error if not available
}
我在PHP方面不太好,我不确定我的php conf或其他问题是否缺少某些php模块,任何帮助都将不胜感激
答案 0 :(得分:0)
模板是一类吗?如果是,那么function Template($name, $type = -1)
应该是构造函数吗?
因为如果是这样,这对PHP来说是不对的。
在PHP中,您使用(例如):
function __construct($name, $type = -1);
作为构造函数。
其次,如果你想在PHP中的同一个类中调用静态方法,你可以通过(例如)来实现:
self::getPath($name, $type);
我希望这能解决你的问题。
因此,您使用self::
进行静态调用,使用$this->
进行对象调用。
如果你需要一个Destruktor,这将是__destruct
(前面带有__的方法被称为#34;魔术方法"你可能想看看很多有用的东西;-))。