程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP4.1.0出版公告中英對照版1

PHP4.1.0出版公告中英對照版1

編輯:關於PHP編程

PHP 4.1.0 Release Announcement PHP 4.1.0 出版公告(1) After a lengthy QA process, PHP 4.1.0 is finally out. Download at http://www.php.net/downloads.php ! PHP 4.1.0 includes several other key improvements: - A new input interface for improved security (read below) 一個新的輸入界面來提高安全性 - Highly improved performance in general 極大提高了性能 - Revolutionary performance and stability improvements under Windows. The multithreaded server modules under Windows (ISAPI, Apache, etc.) perform as much as 30 times faster under load! We want to thank Brett Brewer and his team in Microsoft for working with us to improve PHP for Windows. Windows 下革命性的性能和穩定性。多線程服務器模塊提供了快30倍的性能。 - Versioning support for extensions. Right now its barely being used, but the infrastructure was put in place to support separate version numbers for different extensions. The negative side effect is that loading extensions that were built against old versions of PHP will now result in a crash, instead of in a nice clear message. Make sure you only use extensions built with PHP 4.1.0. 擴展翻譯支持,現在他還很少用到,但是放置了基礎構造來支持某些不同版本號的擴展模塊。負面影響是他和老版本的擴展模塊沖突。你需要確定使用了 php4.1.0的擴展模塊。 - Turn-key output compression support 支持 Turn-key 輸出壓縮 - *LOTS* of fixes and new functions 修正了很多地方,增加了許多函數。 As some of you may notice, this version is quite historical, as its the first time in history we actually incremented the middle digit! :) The two key reasons for this unprecedented change were the new input interface, and the broken binary compatibility of modules due to the versioning support. {沒看懂!!呵呵!以後看懂了再翻譯} Following is a description of the new input mechanism. For a full list of changes in PHP 4.1.0, scroll down to the end of this section. 下面是新的輸入機制的描述。完整的更改列表請看後面 ----------------------------------- SECURITY: NEW INPUT MECHANISM 安全:新的輸入機制 First and foremost, its important to stress that regardless of anything you may read in the following lines, PHP 4.1.0 *supports* the old input mechanisms from older versions. Old applications should go on working fine without modification! 首先,也是最重要的,必須強調對下面內容足夠重視是非常重要的。php 4.1.0 支持舊的輸入機制。老的應用程序仍然可以運行,不用修改。 Now that we have that behind us, lets move on :) 下面是內容 For various reasons, PHP setups which rely on register_globals being on (i.e., on form, server and environment variables becoming a part of the global namespace, automatically) are very often exploitable to various degrees. For example, the piece of code: 由於各種原因,PHP需要設置 register_globlas ON(例如在標單,服務器,環境變量自動成為全局命名空間的一部分),他們經常被不同程度的干擾。下面是一段代碼: May be exploitable, as remote users can simply pass on authenticated as a form variable, and then even if authenticate_user() returns false, $authenticated will actually be set to true. While this looks like a simple example, in reality, quite a few PHP applications ended up being exploitable by things related to this misfeature. 可以通過表單裡面傳送 authenticated 變量來欺騙,即使 authenticate_user()返回false,$authenticated 仍然被設置為true.這只是一個非常簡單的例子,實際上,相當多的程序被類似的錯誤特性欺騙 While it is quite possible to write secure code in PHP, we felt that the fact that PHP makes it too easy to write insecure code was bad, and weve decided to attempt a far-reaching change, and deprecate register_globals. Obviously, because the vast majority of the PHP code in the world relies on the existence of this feature, we have no plans to actually remove it from PHP anytime in the foreseeable future, but weve decided to encourage people to shut it off whenever possible. 當然,完全可以書寫安全的PHP代碼,我們覺得事實上,PHP使得書寫不安全代碼變得非常容易是非常糟糕的事情。我們決定嘗試一個 far-reaching 改變。反對 register_globals.很顯然,由於多數代碼依賴於這個特征,我們沒有辦法在將來的某個時刻真正刪除它。但是我們決定鼓勵人們關閉它 To help users build PHP applications with register_globals being off, weve added several new special variables that can be used instead of the old global variables. There are 7 new special arrays: 為了在關閉 register_globals 情況下幫助用戶創建 PHP 應用程序,我們增加了一些新的特殊變量來代替老的全局變量使用。他們是7個新的特殊數組: $_GET - contains form variables sent through GET 包含著通過GET發來的變量 $_POST - contains form variables sent through POST 包含著通過POST發送來的變量 $_COOKIE - contains HTTP cookie variables 包含著HTTP cookie 的變量 $_SERVER - contains server variables (e.g., REMOTE_ADDR) 包含著服務器變量(如 REMOTE_ADDR) $_ENV - contains the environment variables 包含著環境變量 $_REQUEST - a merge of the GET variables, POST variables and Cookie variables. In other words - all the information that is coming from the user, and that from a security point of view, cannot be trusted. 是 GET/POST/Cookie 變量的集合,也就是說,所有的來自用戶和安全表單的信息。但是從安全角度來看,不能夠信任它們。 $_SESSION - contains HTTP variables registered by the session module 包含著所有session模塊注冊的HTTP變量 Now, other than the fact that these variables contain this special information, theyre also special in another way - theyre automatically global in any scope. This means that you can access them anywhere, without having to global them first. For example: 現在,事實上這些變量包含著特殊的信息,他們在任何環境下同樣是自動的全局變量。也就是說你可以在任何地方存取他們,不需要全局化他們。例如: function example1() { print $_GET["name"]; // works, global $_GET; is not necessary! //不需要聲明 $_GET 是全局變量 } would work fine! We hope that this fact would ease the pain in migrating old code to new code a bit, and were confident its going to make writing new code easier. Another neat trick is that creating new entries in the $_SESSION array will automatically register them as session variables, as if you called session_register(). This trick is limited to the session module only - for example, setting new entries in $_ENV will *not* perform an implicit putenv(). 運行的很好。我們希望這個情況可以使得舊代碼移植能夠容易一些,我們確信它能使書寫新代碼更容易。另外一個竅門是創建新的 $_SESSION 數組入口會自動注冊他們為session b變量,就好像調用 session_register()一樣。這個竅門僅適用於 session 模塊。例如,設置新的 $_ENV 入口不會隱含執行 putenv()。 PHP 4.1.0 still defaults to have register_globals set to on. Its a transitional version, and we encourage application authors, especially public ones which are used by a wide audience, to change their applications to work in an environment where register_globals is set to off. Of course, they should take advantage of the new features supplied in PHP 4.1.0 that make this transition much easier. PHP 4.1.0 默認還是設置 register_globals 為On,她是過渡版本,我們程序做著,特別是被廣泛接受的,改變他們的應用程序,使得在 register_globals 為 off 情況下也能工作。當然,他們需要使用 PHP 4.1.0 的新特征來使得轉換更容易些。 As of the next semi-major version of PHP, new installations of PHP will default to having register_globals set to off. No worries! Existing installations, which already have a php.ini file that has register_globals set to on, will not be affected. Only when you install PHP on a brand new machine (typically, if youre a brand new user), will this affect you, and then too - you can turn it on if you choose to. 在下一個不完全版本力,將會魔人設置 register_globals 為off.不用擔心,已經安裝好的,php.ini 裡面已經設置 register_globals 為on 的,不會受到影響。只有在你安裝php為一個新機器時(一般是一個新用戶)才會影響你,你可以選擇打開它。 Note: Some of these arrays had old names, e.g. $HTTP_GET_VARS. These names still work, but we encourage users to switch to the new shorter, and auto-global versions. 注意:這些數組中的幾個有老的名字,例如 $HTTP_G

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved