//譬如 %windir% 是表示系統目錄的系統變數, 可以這樣獲取:
vars:
string
;begin
s :=
getenvironmentvariable(
'windir');
showmessage(s);
end;
一些系統目錄變數列表:
變數描述
%windir%
%systemroot%
%systemdrive%
%homedrive%
%userprofile%
%homepath%
%tmp%
%temp%
%programfiles%
%commonprogramfiles%
%username%
%allusersprofile%
%os%
%computername%
%number_of_processors%
%processor_architecture%
%processor_level%
%processor_revision%
%userdomain%
%comspec%
%pathext%
%path%
另外, 可以利用 .. 到上層目錄, 如:
vars: string
;begin
s :=
getcurrentdir;
showmessage(s);
setcurrentdir('..
');s :
=getcurrentdir;
showmessage(s);
setcurrentdir(
'..\..');
s :=getcurrentdir;
showmessage(s);
end;
系統環境變數的設定Delphi函式
uses tregistry function setglobalenvironment const name,value string const user boolean true boolean resourcestring reg machine location system curren...
PHP 系統變數 環境變數
在php 開發中,為了滿足 的需要,時常需要對php環境變數進行設定和應用,在虛擬主機環境下,有時我們更需要通過php環境變數操作函 數來對php環境變數值進行設定。為此我們有必要對php環境變數先有所熟悉。今天和大家分享php環境變數 server和php系統常量的部分詳細 說明。php提供了很多...
PHP 系統變數 環境變數
在php 開發中,為了滿足 的需要,時常需要對php環境變數進行設定和應用,在虛擬主機環境下,有時我們更需要通過php環境變數操作函 數來對php環境變數值進行設定。為此我們有必要對php環境變數先有所熟悉。今天和大家分享php環境變數 server和php系統常量的部分詳細 說明。php提供了很多...