Heim  >  Artikel  >  Backend-Entwicklung  >  PHP相对路径问题

PHP相对路径问题

WBOY
WBOYOriginal
2016-07-25 09:10:59885Durchsuche

IIS下 PHP FastCgi的问题

require路径缓存的问题

require系列函数包含相对路径相同

  1. /*IIS下 PHP FastCgi的问题
  2. require路径缓存的问题
  3. require系列函数包含相对路径相同
  4. 比如:*/
  5.   /root/web/config/config.php
  6.   /root/web/admin/config/config.php
  7.   config.php的代码不相同
  8.   /*如下: 依次执行下述代码*/
  9.     /root/web目录下php程序代码 : require('config/config.php'); ///root/web/config/config.php
  10.     /root/web/admin目录下php程序代码 : require('config/config.php'); ///root/web/admin/config/config.php
  11.     /root/web目录下php程序代码 : require('config/config.php'); ///root/web/admin/config/config.php
  12.     第二个config.php会将第一个config.php的缓存覆盖掉,第三个执行时使用的是/root/web/admin/config/config.php。
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn