
php中引入文件的方法有:include、require、include_once、require_once。
区别介绍:
include和require
include有返回值,而require没有返回值。
include在加载文件失败时,会生成一个警告(E_WARNING),在错误发生后脚本继续执行。所以include用在希望继续执行并向用户输出结果时。
//test1.php
<?php
include './tsest.php';
echo 'this is test1';
?>
//test2.php
<?php
echo 'this is test2\n';
function test() {
echo 'this is test\n';
}
?>
//结果:
this is test1require在加载失败时会生成一个致命错误(E_COMPILE_ERROR),在错误发生后脚本停止执行。一般用在后续代码依赖于载入的文件的时候。
立即学习“PHP免费学习笔记(深入)”;
//test1.php
<?php
require './tsest.php';
echo 'this is test1';
?>
//test2.php
<?php
echo 'this is test2\n';
function test() {
echo 'this is test\n';
}
?>结果:
该软件是一个以asp+access进行开发的适用于传媒类公司的企业网站源码。安装方法:1、所有文件传至网站目录2、浏览器执行http://你的访问网址/install3、输入mysql帐号及密码信息,提交安装后台地址:http://你的访问网址/admin.php默认账号:admin默认密码:123123
0

include和include_once
include载入的文件不会判断是否重复,只要有include语句,就会载入一次(即使可能出现重复载入)。而include_once载入文件时会有内部判断机制判断前面代码是否已经载入过。
这里需要注意的是include_once是根据前面有无引入相同路径的文件为判断的,而不是根据文件中的内容(即两个待引入的文件内容相同,使用include_once还是会引入两个)。
//test1.php <?php include './test2.php'; echo 'this is test1'; include './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1this is test2 //test1.php <?php include './test2.php'; echo 'this is test1'; include_once './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1 //test1.php <?php include_once './test2.php'; echo 'this is test1'; include './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1this is test2 //test1.php <?php include_once './test2.php'; echo 'this is test1'; include_once './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1
require和require_once:同include和include_once的区别相同。
更多相关教程请访问php中文网。
以上就是php引入文件的方法有哪些的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号