当我打开调用类Subject的Browse.php文件时,OO PHP显示错误“致命错误:未找到类'Subject'”,致命错误弹出,我猜是我在错误地调用该类
initialize.php
require_once('browse.php');
require_once('class_Subject.php');
browse.php
$subject_array = Subject::find_all();
答案 0 :(得分:0)
如果您不使用工厂设计模式,则需要:
useState()
然后您可以调用任何函数,例如:
$Subject = new Subject();
要以您暗示的方式编写更多内容,您需要应用工厂设计模式。结帐calling class method (with constructors) without object instantiation in php
您需要显示如何编写类以确定使用的设计模式,因为这会影响您实例化该类的方式。这样可以更轻松地获得帮助。