Automatically load a config.php file for all pages before anything else(在其他任何事情之前自动为所有页面加载 config.php 文件)
问题描述
有谁知道如何设置一个特定文件可以先自动为所有页面加载的东西?
Does anyone know how to set up something where a specific file can be loaded automatically for all pages before anything else?
例如,如果我有一个 config.php
文件,并且我希望任何人访问我网站上的页面时都可以加载此文件.
For example if I have a config.php
file and I want this file to be loaded anytime anyone visits a page on my website.
在这里,我将有一些配置信息需要先加载.
In here I would have some configuration info that is required to load prior to anything else.
我不想为此在另一个 php 文件中包含任何内容,我只是希望每次在其他任何事情之前自动加载它.基本上是一个通用的包含.
I don't want to do any includes on another php file for this I just want this to be loaded every time automatically before anything else. Basically a universal include.
推荐答案
你想使用 auto_prepend_file.在您的 php.ini 或 .htaccess 文件中将此指令设置为 config.php
文件的路径,任何访问的 PHP 文件都会自动将配置文件的内容添加到它前面.
You want to use auto_prepend_file. Set this directive in your php.ini or .htaccess file to the path to your config.php
file and any PHP file accessed will automatically have the contents of the config file prepended to it.
对于.htaccess
:
php_value auto_prepend_file /full/path/to/file/config.php
请记住,这只适用于 PHP 作为 Apache 模块运行的服务器.如果 PHP 作为 CGI 运行,您需要在 php.ini
文件中添加编辑它或将其放在 .user.ini
文件中,但不带 php_value
部分.
Keep in mind this ONLY will work on a server where PHP is run as an Apache module. If PHP is run as a CGI you need to add edit it in your php.ini
file or put it inside a .user.ini
file just without the php_value
part.
在 Nginx
中,您可以将此行添加到 location ~ .php$
In Nginx
you could add this line to server configuration inside location ~ .php$
fastcgi_param PHP_VALUE "auto_prepend_file=/full/path/to/file/config.php";
这篇关于在其他任何事情之前自动为所有页面加载 config.php 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在其他任何事情之前自动为所有页面加载 config.php 文件
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01