php----面向对象--加载类
Posted hq金水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php----面向对象--加载类相关的知识,希望对你有一定的参考价值。
//加载类
//include ("/wamp/www/ren.class.php");---"/"根路径,php中指该文件所在的磁盘,html中指服务器文件夹:www。
//include "ren.class.php";
//require("/wamp/www/ren.class.php");
//require("ren.class.php");
//require "ren.class.php";
//require_once("/wamp/www/Ren.class.php");
//require_once("Ren.class.php");
//require_once "Ren.class.php";
//require方法和include方法的区别
//前者一般写在顶部,如果引用出错,那么终止程序、后者如果引用出错,下面的程序依然执行。
//自动加载类---适用于加载多个类,所有类必须在同一个文件夹下
function __autoload($classname)
{
require $classname.".class.php";
}
$r=new ren();
以上是关于php----面向对象--加载类的主要内容,如果未能解决你的问题,请参考以下文章