include是包含很多php文件的一种汇总;一般放在文件夹最外层。
<?php header("content-type:text/html;charset=utf-8");//设置字符date_default_timezone_set("PRC");//设置时间区域为中国session_start();//全局开启sessiondefine("ROOT",dirname(__FILE__));//__FILE__是当前文件的绝对完整路径;dirname()获取返回当前文件路径的 绝对路径部分set_include_path(".".PATH_SEPARATOR.ROOT."/lib".PATH_SEPARATOR.ROOT."/core".PATH_SEPARATOR.ROOT."/configs".PATH_SEPARATOR.get_include_path());//set_include_path()是设置包含文件的路径require_once 'mysql.func.php';require_once 'image.func.php';