
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Include a PHP INI File in Another PHP INI File
The .ini files from the main php,ini file can’t be included. Instead, while compiling PHP, the line
--with-config-file-scan-dir=PATH
can be added.
The ‘PATH’ in the above line refers to the location where the configuration file is to be scanned.
During compile time, PHP will look for each and every .ini file in that specific directory, apart from searching in the normal php.ini file.
Advertisements