PHPinclude_path setting tips

Source: Internet
Author: User
When the include (), require (), and fopen_with_path () functions are used to find files. without setting include_path, when these functions open files, the web root directory is used by default. after setting include_path, these php functions will first be in the specified I 1. meaning of include_path

When the include (), require (), and fopen_with_path () functions are used to find files. without setting include_path, when these functions open files, the web root directory is used by default. after setting include_path, these php functions will first search for them under the specified include_path directory.

The principle is similar to the environment variables of the window system. when the window runs the cmd command, the system will search for the existence of these commands in the environment variables it sets after some cmd commands are entered, if yes, you can execute it.


2. configure include_path
Method 1:

Modify the include_path entry in the php. ini file.

Export de_path =.:/usr/local/lib/php:./include
Method 2:

Use the ini_set method.
Ini_set ("include_path", "..: ../:./include: ../include ");

3. Note
Zendframework include setting index. php

The code is as follows:
Set_include_path ('.'. PATH_SEPARATOR. '../library /'
. PATH_SEPARATOR. './application/models /'
. PATH_SEPARATOR. './application/lib /'
. PATH_SEPARATOR.get_include_path ());

PATH_SEPARATOR is a constant. it is a ":" number in Linux and a ";" number in Windows.

Therefore, it is best to use the constant PATH_SEPARATOR in programming; otherwise, an error will occur if the system is transplanted from linux to win or vice versa!
Get_include_path gets the existing environment variables, and the preceding setting is the new system include

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.