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

php include require

时间:2016-11-13 22:47:34      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:style   span   open   pst   color   div   pre   file   bsp   

includ和require都是把其他页面加载当前页面,不过不同的是,require如果没有找到,或者所包含的页面里面有错误就不会往下执行了

<?php
    include ‘form.php‘;
    
    require ‘aasdfa.php‘;
?>

form.php 存在所以没有问题

aasdfa.php没有所以报错了

 






Warning: require(aasdfa.php): failed to open stream: No such file or directory in D:\phpStudy\WWW\learn\includ_require.php on line 4

Fatal error: require(): Failed opening required ‘aasdfa.php‘ (include_path=‘.;C:\php\pear‘) in D:\phpStudy\WWW\learn\includ_require.php on line 4

php include require

标签:style   span   open   pst   color   div   pre   file   bsp   

原文地址:http://www.cnblogs.com/xudy/p/6059845.html

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