码迷,mamicode.com
首页 > Web开发 > 详细

php----面向对象--加载类

时间:2016-06-08 13:48:33      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

//加载类
//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----面向对象--加载类

标签:

原文地址:http://www.cnblogs.com/jinshui/p/5569615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!