Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将“PurchOrder”类的对象分配给会话变量
$_SESSION['obj'] = new PurchOrder;
但是当我访问“PurchOrder”类中的函数时,它会返回错误“__PHP_Incomplete_Class_Name”
我以前没有处理过这种类型的错误。
如果PurchOrder当您使用存储在会话中的对象时类不可用(或在类实例被序列化和非序列化的任何其他情况下),则会发生这种情况。
PurchOrder
您需要确保无论何时要使用该类的实例,都包含定义该类的任何文件。