欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

[日常] PHP设置 include_path 配置选项

程序员文章站 2022-07-07 19:48:52
动态设置php.ini中的include_path 配置选项: 两种方式set_include_path($new_include_path)ini_set('include_path',$new_include_path);利用常量 PATH_SEPARATOR 可跨平台扩展 include pa ......

动态设置php.ini中的include_path 配置选项:

两种方式
set_include_path($new_include_path)
ini_set('include_path',$new_include_path);
利用常量 PATH_SEPARATOR 可跨平台扩展 include path,可以把自己设置的path加在现有include_path的尾部

 

<?php
$path='/var/www/html';
//第一种
//set_include_path(get_include_path() . PATH_SEPARATOR . $path);

//第二种
ini_set('include_path', ini_get('include_path'). PATH_SEPARATOR.$path);
require 'test2.php';

var_dump($a);

 

在/var/www/html下建立test2.php

<?php
$a="hello world";

  

结果

[日常] PHP设置 include_path 配置选项