English 中文(简体)
我如何发现一个存放地点档案的目录
原标题:How do I detect the directory a php file is in
  • 时间:2010-04-02 20:43:40
  •  标签:
  • php

我有一份PHP文件,我需要它发现其目录。 在我的案件中,我想回来C:Program 文件 阿帕奇软件基金会

我认为,这只是简单明了的,但是,如果存在一些东西,你就不理解。

最佳回答

PHP5.3:DIR__

缩略语:dirname(__FILE__)

问题回答

The magic-constant _FILE_> contained the full path to the file in which You written it.

<<>dirname 功能将这条道路退回到与档案相应的名录。

因此,就你而言,为了通向载有你档案的名录,你可以:

echo dirname(__FILE__);

除了档案目录外,您还可以找到与网站服务器/相一致的目录( http://www.example.com/)。 URL是有益的。 储存在<代码>上的 SERVER[DOCUMENT_ROOT]





相关问题
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 ...

热门标签