English 中文(简体)
PHP 中如何计算路径 - 为什么忽略当前目录中的文件?
原标题:How are paths calculated in PHP - Why are files in the current directory ignored?
  • 时间:2012-05-24 14:01:15
  •  标签:
  • php

更新 :

这里的索引.php文件 :

/public_html/d/index.php

包括:

/public_html/d/c或e/source/class.File1.php

此类 。 File1. php 此类包括这样写:

include  class.File2.php ;

我自然地将 class.file2.php 放在与类相同的目录中。

/public_html/d/c或e/source/class.File2.php

不过,

它实际上包括这个文件:(通知丢失的 /d/ )

/public_html/c或e/source/class.File2.php

不知道为什么它不使用当前目录中的文件 。

但有一些可能性。

请求页面的用户条目到:(用户类型 www.host.com/d )

/public_html/d/

其中包括: (工作正常,我测试过)

/public_html/d/c或e/source/class.File1.php 

但是,如上所述,该档案中包括了出现故障之处:

include "class.File2.php"

唯一有意义的是... 包括使用某种内部常数

ROOT

$_SERVER[ DOCUMENT_ROOT ]

but I still can t figure out why it would ign或e the /d/ but figure out the rest.

最佳回答

您是否在应用程序中使用 < a href=" "http:// php. net/ manual/ en/ opident. set- including- path.php" rel= "nofollow" >set_ including_ path 任何地方? 也许这可能造成您的问题。 您正在指定一个目录列表, 列出需要的目录, 包括, fopen (), 文件 (), 读文件 () 和文件_get_ contents () 函数首先查找文件 。

As an alternative I suggest you define the absolute path to avoid problems. Write this on your /public_html/d/core/source/class.File1.php

// This if you are using PHP >= 5.3
include(__DIR__ .  /class.File2.php );

// Or this if you dont have the magic constant __DIR__ available
include(dirname(__FILE__) .  /class.File2.php );

FILE/code > 和

您可以在此阅读更多有关它们的文章http://php.net/manual/en/language.constats.preced.php

问题回答

你们尝试过一种相对路径吗?

include  ./class.File2.php ;

类. File1.php 本身是否包含在其它脚本中?

  • getcwd () 总是返回相同的路径, 不论它位于( 我系统上的) 文件 。 在我看来是一个错误 。

  • PHP在列表中或当前目录中未指定的路径中找到了另一个文件。这是我认为的错误 。

  • 在我的系统中,如果你不想使用绝对路径... 我找到的唯一使用相对路径的方法是 dirname (___FILE____); 来预设您想去的地方 。

  • .或./ / 预审文件没有工作...





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...