包括、include_once、require 还是 require_once? [英] include, include_once, require or require_once?

查看:22
本文介绍了包括、include_once、require 还是 require_once?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have PHP file where I have defined the server access variables as well as the mysql_connect and mysql_select_db, as this functions are regularly used in almost every page in backend, while I am using include() which is perfectly working for me now, which method or function would you suggest and I would like to know if there is any flaw if I use include() or is it safe to use it?

Edit : Keeping in mind I'll be using $_SESSION variable too.

解决方案

The only difference between the two is that require and its sister require_once throw a fatal error if the file is not found, whereas include and include_once only show a warning and continue to load the rest of the page. If you don't want PHP to attempt to load the rest of your page without the database info (which I would assume), then use require_once. You don't need to include the file more than once, so there is no need to use the regular require function.

这篇关于包括、include_once、require 还是 require_once?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆