search
HomeBackend DevelopmentPHP TutorialPHP中 getenv()函数 (环境变量)

 PHP中 getenv() 取得系统的环境变量(预定义变量)

$_SERVER['SERVER_NAME']
delphi.xcjc.net1 F3 X+ r8 P) u+ I8 I$ A; S3 t
5 Q* j, B8 X( m, x
' ]$ G/ F% x8 |& S1 p: f; a$ c- q
$spager=getenv('SERVER_NAME');delphi.xcjc.net7 R- N, u4 @: z2 F2 x. R: L
CJC Delphi 技巧馆5 Z! K" j5 m8 f0 g
“PHP_SELF”delphi.xcjc.net% u, @4 p- D- m4 L
当前正在执行脚本的文件名,与 document root 相关。举例来说,在 URL 地址为 http://example.com/test.php/foo.bar 的脚本中使用 $_SERVER['PHP_SELF'] 将会得到 /test.php/foo.bar 这个结果。__FILE__ 常量包含当前(例如包含)文件的绝对路径和文件名。
Delphi Tip, Delphi Skills, Delphi技巧% F- e6 C3 S% |. h
如果 PHP 以命令行方式运行,该变量在 PHP 4.3.0 之前无效。

“argv”
传递给该脚本的参数。当脚本运行在命令行方式时,argv 变量传递给程序 C 语言样式的命令行参数。当调用 GET 方法时,该变量包含请求的数据。% A; T' O+ s' D2 Q6 v9 @+ G+ N* {
* ~' }1 R& Z1 A& w; L+ [" n+ g
“argc”Delphi Tips, Delphi Skills, Delphi技巧, Delphi问答, Delphi技术, cjc delphi' t) v# j ] _* n! D! b
包含传递给程序的命令行参数的个数(如果运行在命令行模式)。) P4 h" x% Q0 H2 \/ n" N5 l) A
' H. f# w) o% c* _8 \9 Y9 b
“GATEWAY_INTERFACE”Delphi Tip, Delphi Skills, Delphi技巧+ }6 Y+ Y3 e* c
服务器使用的 CGI 规范的版本。例如,“CGI/1.1”。CJC Delphi 技巧馆. y+ Y. g8 [, u |
, A1 W7 |, |! Q! |
“SERVER_NAME”
当前运行脚本所在服务器主机的名称。如果该脚本运行在一个虚拟主机上,该名称是由那个虚拟主机所设置的值决定。CJC Delphi 技巧馆# I. A4 B9 z8 c

“SERVER_SOFTWARE”
服务器标识的字串,在响应请求时的头信息中给出。

“SERVER_PROTOCOL”delphi.xcjc.net9 \" ^7 W. K: \/ ]$ s5 _$ _
请求页面时通信协议的名称和版本。例如,“HTTP/1.0”。delphi.xcjc.net B& [4 m% m* l
Delphi Tip, Delphi Skills, Delphi技巧+ S, S; b1 S6 I7 q1 O- v/ n' ?& C
“REQUEST_METHOD”
访问页面时的请求方法。例如:“GET”、“HEAD”,“POST”,“PUT”。

注: 如果请求的方式是 HEAD,PHP 脚本将在送出头信息后中止(这意味着在产生任何输出后,不再有输出缓冲)。Delphi Tips, Delphi Skills, Delphi技巧, Delphi问答, Delphi技术, cjc delphi/ W5 [0 l! o4 [, y3 V5 A9 C
CJC Delphi 技巧馆9 Y: B- L& A# ~& O
“REQUEST_TIME”

1 2 3 4 5 6  下一页
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use