<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    PHP 4.1.0 的 php.ini 的全文翻譯

    Posted on 2007-11-13 22:15 yukui 閱讀(244) 評論(0)  編輯  收藏 所屬分類: 技術
    ;;;;;;;;;;;;;;;;;;; 
    ; About this file ; 

    ; 關于這個文件 

    ;;;;;;;;;;;;;;;;;;; 

    ; This is the recommended, PHP 4-style version of the php.ini-dist file. It 
    ; sets some non standard settings, that make PHP more efficient, more secure, 
    ; and encourage cleaner coding. 


    ; 這個是推薦的,PHP 4 版本類型的 php.ini-dist 文件,他設置了一些非標準的設置,他們使得 
    ; PHP更加有效,更加安全,鼓勵整潔的編碼。 


    ; The price is that with these settings, PHP may be incompatible with some 
    ; applications, and sometimes, more difficult to develop with. Using this 
    ; file is warmly recommended for production sites. As all of the changes from 
    ; the standard settings are thoroughly documented, you can go over each one, 
    ; and decide whether you want to use it  or not. 


    ; 這樣做的代價是,某些應用程序可能在這樣的配置下不兼容,在某些情況下,開發會更加困難。 
    ; 使用這個文件是我門對建設站點的熱心建議。每個標準設置的改變都有徹底的說明穩當,你可以 
    ; 處理沒一個,決定是否使用他們。 


    ; For general information about the php.ini file, please consult the php.ini-dist 
    ; file, included in your PHP distribution. 


    ; 關于 php.ini 的一般信息,請參考 php.ini-dist 文件,包括你的 PHP 的說明 


    ; This file is different from the php.ini-dist file in the fact that it features 
    ; different values for several directives, in  order to improve performance, while 
    ; possibly breaking compatibility with the standard out-of-the-box behavior of 
    ; PHP 3. Please make sure you read what's different, and modify your scripts 
    ; accordingly, if you decide to use this file instead. 


    ; 這個文件和 php.ini-dist 的區別在于它給予了一些指示不同的值,來提高性能,同時可能破壞了 
    ; PHP 3 的標準的 out-of-the-box 特性。 


    ; - register_globals = Off [Security, Performance] 
    ; Global variables are no longer registered for input data (POST, GET, cookies, 
    ; environment and other server variables). Instead of using $foo, you must use 
    ; you can use $_REQUEST["foo"] (includes any variable that arrives through the 
    ; request, namely, POST, GET and cookie variables),  or use one of the specific 
    ; $_GET["foo"], $_POST["foo"], $_COOKIE["foo"]  or $_FILES["foo"], depending 
    ; on where the input  originates. Also, you can look at the 
    ; import_request_variables() function. 
    ; Note that register_globals is going to be depracated (i.e., turned off by 
    ; default) in the next version of PHP, because it often leads to security bugs. 
    ; Read http://php.net/manual/en/security.registerglobals.php for further 
    ; information. 


    ; 全局變量不再注冊輸入的數據(POST,GET,cookies,環境變量和其他的服務器變量)。作為代替的是使用 
    ; $foo, 你必須使用 $_REQUEST["foo"] ( 包括所有的通過請求傳來的變量,也就是說,POST,GET,和 
    ; cookies 變量)或者根據輸入的來源使用指定的 $_GET["foo"],$_POST["foo"],$_COOKIE["foo"] 
    ; ,$_FILES["foo"] (訪問他們).同時,你可以查看 import_request_variables()函數。 

    ; 注意,這個參數可能在下個版本去掉(默認為off),因為他經常引起安全 bugs.到 
    http://php.net/manual/en/security.registerglobals.php 
    ; 查看詳細內容 


    ; - display_errors = Off [Security] 
    ; With this directive set to off, errors that occur during the execution of 
    ; scripts will no longer be displayed as a part of the script output, and thus, 
    ; will no longer be exposed to remote users. With some errors, the error message 
    ; content may expose information about your script, web server,  or database 
    ; server that may be exploitable for hacking. Production sites should have this 
    ; directive set to off. 


    ; 設置這個指示為Off,在腳本執行期間發生錯誤時,不再將錯誤作為輸出的一部分顯示,這樣就不會暴露給 
    ; 遠端用戶。對于某些錯誤,錯誤信息的內容可能暴露你的腳本,web服務器,數據庫服務器的信息,可能被 
    ; 黑客利用。最終產品占點需要設置這個指示為off. 


    ; - log_errors = On [Security] 
    ; This directive complements the above one. Any errors that occur during the 
    ; execution of your script will be logged (typically, to your server's error log, 
    ; but can be configured in several ways). Along with setting display_errors to off, 
    ; this setup gives you the ability to fully understand what may have gone wrong, 
    ; without exposing any sensitive information to remote users. 


    ; 這個指示補充上面的。所有的發生在腳本運行期間的錯誤都會紀錄在日志中(代表性的,記錄在服務器的錯誤 
    ; 日志中,但是可以配置不同的方式)。隨著 display_errors 設置為 off,這個設置給你全面了解到底什么 
    ; 發生錯誤的能力,而不會向遠端用戶暴露任何信息。 


    ; - output_buffering = 4096 [Performance] 
    ; Set a 4KB output buffer. Enabling output buffering typically results in less 
    ; writes, and sometimes less packets sent on the wire, which can often lead to 
    ; better performance. The gain this directive actually yields greatly depends 
    ; on which Web server you're working with, and what kind of scripts you're using. 


    ; 設置 4KB 的輸出緩沖區。打開輸出緩沖可以減少寫的次數,有時減少線路發送包的數量,這樣能提高性能。 
    ; 這個指示真正得到的益處很大程度的依賴于你的工作的 WEB 服務器,以及你使用的腳本。 


    ; - register_argc_argv = Off [Performance] 
    ; Disables registration of the somewhat redundant $argv and $argc global 
    ; variables. 


    ; 禁止注冊某些多于的 $argv 和 $argc 全局變量 


    ; - magic_quotes_gpc = Off [Performance] 
    ; Input data is no longer escaped with slashes so that it can be sent into 
    ; SQL databases without further manipulation. Instead, you should use the 
    ; function addslashes() on each input element you wish to send to a database. 


    ; 輸入數據不再被斜線轉義,以便于無需更多的處理就可以發送到SQL數據庫里面。作為代替,你可 
    ; 以對每個要發送到數據庫的輸入元素使用 addslashes()函數。 


    ; - variables_order = "GPCS" [Performance] 
    ; The environment variables are not hashed into the $HTTP_ENV_VARS[]. To access 
    ; environment variables, you can use getenv() instead. 

    ; 環境變量不再進入 $HTTP_ENV_VARS[],你需要用 getenv()來訪問環境變量。 


    ; - error_reporting = E_ALL [Code Cleanliness, Security(?)] 
    ; By default, PHP surpresses errors of type E_NOTICE. These error messages 
    ; are emitted for non-critical errors, but that could be a symptom of a bigger 
    ; problem. Most notably, this will cause error messages about the use 
    ; of uninitialized variables to be displayed. 


    ; 默認的,PHP 給出 E_NOTICE 錯誤類型,這些錯誤信息不是核心錯誤,但是可能是個更大錯誤的隱患。 
    ; 大多數提醒是那些沒有初始化變量引起的錯誤信息。 


    ; - allow_call_time_pass_reference = Off [Code cleanliness] 
    ; It's not possible to decide to force a variable to be passed by reference 
    ; when calling a function. The PHP 4 style to do this is by making the 
    ; function require the relevant argument by reference. 


    ; 在調用函數時,不可能決定強制傳遞變量的引用。PHP 4 里通過函數請求相關參數的引用來實現 



    ;;;;;;;;;;;;;;;;;;;; 
    ; Language Options ; 


    ; 語言配置 


    ;;;;;;;;;;;;;;;;;;;; 

    ; Enable the PHP scripting language engine under Apache. 


    ; 允許在Apache下的PHP腳本語言引擎 


    engine = On 

    ; Allow the tags are recognized. 


    ; 允許 標記 


    short_open_tag = On 

    ; Allow ASP-style tags. 


    ; 允許 ASP 類型的 標記 


    asp_tags = Off 

    ; The number of significant digits displayed in floating point numbers. 


    ; 浮點數顯示的有意義的數字(精度) 


    precision = 14 

    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers) 


    ; 強制遵從 2000 年(會在不遵從的瀏覽器上引起錯誤) 


    y2k_compliance = Off 

    ; Output buffering allows you to send header lines (including cookies) even 
    ; after you send body content, at the price of slowing PHP's output layer a 
    ; bit. You can enable output buffering during runtime by calling the output 
    ; buffering functions. You can also enable output buffering for all files by 
    ; setting this directive to On. If you wish to limit the size of the buffer 
    ; to a certain size - you can use a maximum number of bytes instead of 'On', as 
    ; a value for this directive (e.g., output_buffering=4096). 


    ; 輸出緩沖允許你在主體內容發送后發送頭信息行(包括 cookies),作為代價,會稍微減慢一點PHP 
    ; 輸出層的速度。你可以在運行期間通過調用輸出緩沖函數來打開輸出緩沖。你也可以通過設置這個 
    ; 指示來對雖有的文件打開輸出緩沖。如果你想限制緩沖區大小為某個尺寸,你可以使用一個允許最大 
    ; 的字節數值代替 "On",作為這個指示的值。 


    output_buffering = 4096 

    ; You can redirect all of the output of your scripts to a function. For 
    ; example, if you set output_handler to "ob_gzhandler", output will be 
    ; transparently compressed for browsers that support gzip  or deflate encoding. 
    ; Setting an output handler automatically turns on output buffering. 


    ; 你可以重新定向腳本所有輸出到一個函數。例如,你可以設置 output_handler 為 "ob_gzhandler", 
    ; 輸出將會被明顯的被壓縮到支持 gzip 或 deflate 編碼的瀏覽器。設置一個輸出管理會自動打開 
    ; 輸出緩沖 


    output_handler = 

    ; Transparent output compression using the zlib library 
    ; Valid values for this option are 'off', 'on',  or a specific buffer size 
    ; to be used for compression (default is 4KB) 


    ; 使用 zlib 庫進行輸出壓縮,可以指定 off/on 或者用于壓縮的緩沖大小 


    zlib.output_compression = Off 

    ; Implicit flush tells PHP to tell the output layer to flush itself 
    ; automatically after every output block. This is equivalent to calling the 
    ; PHP function flush() after each and every call to print()  or echo() and each 
    ; and every HTML block. Turning this option on has serious performance 
    ; implications and is generally recommended for debugging purposes only. 


    ; 隱含的通知PHP的輸出層在每個輸出塊后自己自動刷新。等同于在每個 print() 或者 echo() 
    ; 和每個HTML塊后面都調用 flush()函數。打開這個配置會引起嚴重的隱含執行,一般推薦在用于 
    ; 調試目的時使用。 


    implicit_flush = Off 

    ; Whether to enable the ability to force arguments to be passed by reference 
    ; at function call time. This method is deprecated and is likely to be 
    ; unsupported in future versions of PHP/Zend. The encouraged method of 
    ; specifying which arguments should be passed by reference is in the function 
    ; declaration. You're encouraged to try and turn this option Off and make 
    ; sure your scripts work properly with it in  order to ensure they will work 
    ; with future versions of the language (you will receive a warning each time 
    ; you use this feature, and the argument will be passed by value instead of by 
    ; reference). 


    ; 是否允許在函數調用期間有強制參數以引用的形式傳遞的能力。這個方法不贊成使用,在將來的 
    ; PHP和Zend版本里面可能不支持。鼓勵的方法是在函數聲明時指定哪個參數通過引用傳遞。鼓勵你 
    ; 嘗試關閉這個參數,確認你的腳本能夠正常運行,以便在以后版能里面正確運行(你會在每次使用 
    ; 這個特性時得到一個警告,并且參數以值來傳遞,代替引用) 


    allow_call_time_pass_reference = Off 



    ; Safe Mode 


    ; 安全模式 



    safe_mode = Off 

    ; By default, Safe Mode does a UID compare check when 
    ; opening files. If you want to relax this to a GID compare, 
    ; then turn on safe_mode_gid. 


    ; 安全模式默認的在打開文件時進行 UID 比較檢查,如果你想放寬他為GID比較,打開這個參數 


    safe_mode_gid = Off 

    ; When safe_mode is on, UID/GID checks are bypassed when 
    ; including files from this directory and its subdirectories. 
    ; (directory must also be in include_path  or full path must 
    ; be used when including) 


    ; 在安全模式,當包含如下目錄和子目錄文件時,繞過 UID/GID檢查(路徑必須在 include_path下面 
    ; 或者在包含時使用完整路徑 


    safe_mode_include_dir = 

    ; When safe_mode is on, only executables located in the safe_mode_exec_dir 
    ; will be allowed to be executed via the exec family of functions. 


    ; 在安全模式下,只有給出目錄下可以通過 exec 族函數執行 


    safe_mode_exec_dir = 

    ; open_basedir, if set, limits all file operations to the defined directory 
    ; and below. This directive makes most sense if used in a per-directory 
    ;  or per-virtualhost web server configuration file. 


    ; 如果設置,則限制所有的文件操作都到下面給出的目錄下。這個指示在每個目錄,每個虛擬主機的web 
    ; 服務器配置文件里給出更多的認識。 


    ;open_basedir = 

    ; Setting certain environment variables may be a potential security breach. 
    ; This directive contains a comma-delimited list of prefixes. In Safe Mode, 
    ; the user may only alter environment variables whose names begin with the 
    ; prefixes supplied here. By default, users will only be able to set 
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR). 

    ; Note: If this directive is empty, PHP will let the user modify ANY 
    ; environment variable! 


    ; 設置某些環境變量可能是隱藏的安全缺口。這個指示包含一個逗號分割的前綴指示。在安全模式下 
    ; 用戶只能修改下面提供的為前綴的變量名字。默認,用戶只能設置以 PHP_ 前綴開頭的環境變量( 
    ; 例如 PHP_FOO=BAR). 

    ; 注意:如果這個設置為空,則 PHP 可以讓用戶修改任何環境變量。 


    safe_mode_allowed_env_vars = PHP_ 

    ; This directive contains a comma-delimited list of environment variables that 
    ; the end user won't be able to change using putenv(). These variables will be 
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them. 


    ; 這個指示包含用逗號分割的不允許最終用戶通過 putenv()修改的環境變量的列表。這些變量即使 
    ; 在 safe_mode_allowed_env_vars 設置允許改變他們的情況下也被保護。 


    safe_mode_protected_env_vars = LD_LIBRARY_PATH 

    ; This directive allows you to disable certain functions for security reasons. 
    ; It receives a comma-delimited list of function names. This directive is 
    ; *NOT* affected by whether Safe Mode is turned On  or Off. 


    ; 這個指示用于在由于安全原因的情況下屏蔽某些函數。接受用逗號分割的函數名列表,這個指示不受 
    ; Safe Mode 是否打開的影響。 


    disable_functions = 

    ; Colors for Syntax Highlighting mode. Anything that's acceptable in 
    ; would work. 


    ; 語法加亮模式的顏色,任何 正常工作的都可以接受 


    highlight.string = #CC0000 
    highlight.comment = #FF9900 
    highlight.keyword = #006600 
    highlight.bg = #FFFFFF 
    highlight.default = #0000CC 
    highlight.html = #000000 



    ; Misc 

    ; Decides whether PHP may expose the fact that it is installed on the server 
    ; (e.g. by adding its signature to the Web server header). It is no security 
    ; threat in any way, but it makes it possible to determine whether you use PHP 
    ; on your server  or not. 


    ; 是否讓服務器暴露 PHP(例如在 web 服務器頭增加標記)。他不會有安全威脅,但是可以讓你 
    ; 檢測一個服務器是否使用了 PHP. 


    expose_php = On 


    ;;;;;;;;;;;;;;;;;;; 
    ; Resource Limits ; 


    ; 資源限制 



    ;;;;;;;;;;;;;;;;;;; 



    ; 每個腳本最大執行的秒數 


    max_execution_time = 30 ; Maximum execution time of each script, in seconds 



    ; 一個腳本最大消耗的內存 


    memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) 


    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 
    ; Error handling and logging ; 


    ; 錯誤處理和記錄 


    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 

    ; error_reporting is a bit-field. Or each number up to get desired error 
    ; reporting level 


    ; 錯誤報告是一個位字段,每個數值代表錯誤報告的等級 


    ; E_ALL - All errors and warnings 

    ; 所有的錯誤和警告 

    ; E_ERROR - fatal run-time errors 

    ; 致命的運行期錯誤 

    ; E_WARNING - run-time warnings (non-fatal errors) 

    ; 運行期警告(非致命錯誤) 

    ; E_PARSE - compile-time parse errors 

    ; 編譯期間解析錯誤 

    ; E_NOTICE - run-time notices (these are warnings which often result 
    ; from a bug in your code, but it's possible that it was 
    ; intentional (e.g., using an uninitialized variable and 
    ; relying on the fact it's automatically initialized to an 
    ; empty string) 

    ; 運行期間注意,一般是由于代碼的 bug 引起的警告,但是很可能是故意這樣的。例如使用沒有初始化 
    ; 的變量,依賴于他自動初始化為空的字符串。 

    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup 

    ; 發生在 PHP 的初始啟動階段的致命錯誤 

    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's 
    ; initial startup 

    ; 發生在 PHP 的初始啟動階段的警告(非致命錯誤) 

    ; E_COMPILE_ERROR - fatal compile-time errors 

    ; 致命的編譯期間錯誤 

    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) 

    ; 編譯期間的警告(非致命的錯誤) 

    ; E_USER_ERROR - user-generated error message 

    ; 用戶引起的錯誤信息 

    ; E_USER_WARNING - user-generated warning message 

    ; 用戶引起的警告信息 

    ; E_USER_NOTICE - user-generated notice message 

    ; 用戶引起的提醒信息 


    ; Examples: 

    ; - Show all errors, except for notices 

    ; 顯示所有錯誤,除了提醒 

    ;error_reporting = E_ALL & ~E_NOTICE 

    ; - Show only errors 

    ; 只顯示錯誤 

    ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR 

    ; - Show all errors except for notices 

    ; 顯示所有的錯誤(譯者注:英文可能有錯誤) 

    error_reporting = E_ALL 

    ; Print out errors (as a part of the output). For production web sites, 
    ; you're strongly encouraged to turn this feature off, and use error logging 
    ; instead (see below). Keeping display_errors enabled on a production web site 
    ; may reveal security information to end users, such as file paths on your Web 
    ; server, your database schema  or other information. 


    ; 輸出錯誤(作為輸出的一部分)。對于成品網站,強烈建議關閉這個特性,使用下面錯誤日志代替。 
    ; 在成品網站打開這個特性可能對最終用戶暴露安全信息。例如 WEB 服務器的文件路徑,數據庫計劃 
    ; 或其他信息。 


    display_errors = Off 

    ; Even when display_errors is on, errors that occur during PHP's startup 
    ; sequence are not displayed. It's strongly recommended to keep 
    ; display_startup_errors off, except for when debugging. 


    ; 即使 display_errors 參數設置位 on,發生在 PHP 的啟動順序期間的錯誤也不會顯示。 
    ; 強烈建議保持 display_startup_errors 為 off,除非在調試階段。 


    display_startup_errors = Off 

    ; Log errors into a log file (server-specific log, stderr,  or error_log (below)) 
    ; As stated above, you're strongly advised to use error logging in place of 
    ; error displaying on production web sites. 


    ; 把錯誤寫到一個日志文件里面(服務器指定日志,標準錯誤,或者后面的錯誤日志)。 
    ; 根據上面的一致性,強烈建議使用錯誤日志代替web站點的錯誤顯示。 


    log_errors = On 

    ; Store the last error/warning message in $php_errormsg (boolean). 


    ; 保存最后的錯誤/警告信息在 $php_errormsg(boolean)里面。 


    track_errors = Off 

    ; Disable the inclusion of HTML tags in error messages. 


    ; 屏蔽掉錯誤信息里面內含的HTML標記 


    ;html_errors = Off 

    ; String to output before an error message. 


    ; 錯誤信息前輸出的字符串 


    ;error_prepend_string = "" 

    ; String to output after an error message. 


    ; 錯誤信息后輸出的字符串。 


    ;error_append_string = "" 

    ; Log errors to specified file. 


    ; 錯誤寫進指定的文件 


    ;error_log = filename 

    ; Log errors to syslog (Event Log on NT, not valid in Windows 95). 
    ;error_log = syslog 

    ; Warn if the + operator is used with strings. 


    ; 在對字符串用 + 操作符時給出警告 


    warn_plus_overloading = Off 


    ;;;;;;;;;;;;;;;;; 
    ; Data Handling ; 


    ; 數據處理 


    ;;;;;;;;;;;;;;;;; 

    ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 

    ; 注意,在 PHP 4.0.3 里面, track_vars 總是打開的。 


    ; The separator used in PHP generated URLs to separate arguments. 
    ; Default is "&". 


    ; PHP在產生URLs時用于分割參數的分割符。默認是 "&" 


    ;arg_separator.output = "&" 

    ; List of separator(s) used by PHP to parse input URLs into variables. 
    ; Default is "&". 
    ; NOTE: Every character in this directive is considered as separator! 


    ; PHP用于把輸入的 URLs 解析為變量的分割符列表,默認是 "&"; 
    ; 注意:這個指示的每個字符都被認為是分割符 


    ;arg_separator.input = ";&" 

    ; This directive describes the  order in which PHP registers GET, POST, Cookie, 
    ; Environment and Built-in variables (G, P, C, E & S respectively, often 
    ; referred to as EGPCS  or GPC). Registration is done from left to right, newer 
    ; values override older values. 


    ; 這個指示描述PHP注冊 GET,POST,Cookes,環境變量和內部變量的順序(分別對應于 G,P,C,E 和 S, 
    ; 經常為 EGPCS 或者 GPC).注冊從左到右,新的值覆蓋舊的值。 


    variables_order = "GPCS" 

    ; Whether  or not to register the EGPCS variables as global variables. You may 
    ; want to turn this off if you don't want to clutter your scripts' global scope 
    ; with user data. This makes most sense when coupled with track_vars - in which 
    ; case you can access all of the GPC variables through the $HTTP_*_VARS[], 
    ; variables. 


    ; 是否注冊 EGPCS 變量為全局變量。如果你不想和用戶數據混淆腳本全局范圍,你可能想關閉他。 
    ; 結合 track_vars 可以更加理性。它可以讓你通過 $HTTP_*_VARS[] 訪問所有的GPC變量。 


    ; You should do your best to write your scripts so that they do not require 
    ; register_globals to be on; Using form variables as globals can easily lead 
    ; to possible security problems, if the code is not very well thought of. 


    ; 你可以盡力書寫不需要 register_globals 打開時的腳本。如果代碼沒有非常好的考慮是 
    ; 使用來源于全局變量的表單數據很容易引起安全問題。 


    register_globals = Off 

    ; This directive tells PHP whether to declare the argv&argc variables (that 
    ; would contain the GET information). If you don't use these variables, you 
    ; should turn it off for increased performance. 


    ; 這個指示通知 PHP 是否聲明 argv 和 argc 變量(他們可能包含 GET 信息)。 
    ; 如果你不使用他們,你應該關閉他來提高性能。 


    register_argc_argv = Off 

    ; Maximum size of POST data that PHP will accept. 


    ; PHP接受的最大的 POST 數據尺寸 


    post_max_size = 8M 

    ; This directive is deprecated. Use variables_order instead. 


    ; 這個指示不贊成使用,使用 variables_order 代替 


    gpc_order = "GPC" 

    ; Magic quotes 


    ; Magic quotes for incoming GET/POST/Cookie data. 


    ; 轉換進入的 GET/POST/Cookie 數據 


    magic_quotes_gpc = Off 

    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. 


    ; 轉換運行期間產生的數據,例如來自于 SQL, exec()等等 


    magic_quotes_runtime = Off 

    ; Use Sybase-style magic quotes (escape ' with '' instead of \'). 


    ; 使用 Sybase 樣式的轉換(對于 ' 使用 '' 代替 \') 


    magic_quotes_sybase = Off 

    ; Automatically add files before  or after any PHP document. 


    ; 在PHP文檔前后自動加入的文件名字。 


    auto_prepend_file = 
    auto_append_file = 

    ; As of 4.0b4, PHP always outputs a character encoding by default in 
    ; the Content-type: header. To disable sending of the charset, simply 
    ; set it to be empty. 

    ; PHP's built-in default is text/html 


    ; 在 4.0b4, PHP 總是在 Content-type:頭里面發送默認的字符編碼。要禁止發送字符設置 
    ; 簡單的把他設置為空就可以。 
    ; PHP 內置的默認值是 text/html 


    default_mimetype = "text/html" 
    ;default_charset = "iso-8859-1" 


    ;;;;;;;;;;;;;;;;;;;;;;;;; 
    ; Paths and Directories ; 


    ; 路徑和目錄 


    ;;;;;;;;;;;;;;;;;;;;;;;;; 

    ; UNIX: "/path1:/path2" 


    ; UNIX: 使用 /path1:path2 樣式 


    ;include_path = ".:/php/includes" 

    ; Windows: "\path1;\path2" 

    ; Window: 使用 \path1;\path2 樣式 

    ;include_path = ".;c:\php\includes" 

    ; The root of the PHP pages, used only if nonempty. 


    ; PHP 頁面的根位置,僅在非空時使用 


    doc_root = 

    ; The directory under which PHP opens the script using /~usernamem used only 
    ; if nonempty. 


    ; 使用 /~username 打開 PHP 腳本時的目錄,非空時使用。 


    user_dir = 

    ; Directory in which the loadable extensions (modules) reside. 


    ; 本地可裝載的擴展(模塊)所在的目錄 


    extension_dir = c:\php\extensions 

    ; Whether  or not to enable the dl() function. The dl() function does NOT work 
    ; properly in multithreaded servers, such as IIS  or Zeus, and is automatically 
    ; disabled on them. 


    ; 是否允許 dl()函數。dl()在多線程服務器上不能正確的工作,例如 IIS 或者 Zeus,此時自動屏蔽 


    enable_dl = On 


    ;;;;;;;;;;;;;;;; 
    ; File Uploads ; 


    ; 文件上傳 


    ;;;;;;;;;;;;;;;; 

    ; Whether to allow HTTP file uploads. 


    ; 是否允許文件上傳 


    file_uploads = On 

    ; Temporary directory for HTTP uploaded files (will use system default if not 
    ; specified). 


    ; HTTP 上傳時文件的臨時目錄(如果沒有指定就使用系統默認的) 


    ;upload_tmp_dir = 

    ; Maximum allowed size for uploaded files. 


    ; 最大允許上傳文件尺寸 


    upload_max_filesize = 2M 


    ;;;;;;;;;;;;;;;;;; 
    ; Fopen wrappers ; 


    ; 文件打開封裝 


    ;;;;;;;;;;;;;;;;;; 

    ; Whether to allow the treatment of URLs (like http://  or ftp://) as files. 


    ; 是否允許把 URLs(象 http:// 或者 ftp://)以文件對待 


    allow_url_fopen = On 

    ; Define the anonymous ftp password (your email address) 


    ; 默認的 ftp 密碼(你的郵箱地址) 


    ;from="john@doe.com" 


    ;;;;;;;;;;;;;;;;;;;;;; 
    ; Dynamic Extensions ; 


    ; 動態擴展 


    ;;;;;;;;;;;;;;;;;;;;;; 

    ; If you wish to have an extension loaded automatically, use the following 
    ; syntax: 

    ; extension=modulename.extension 

    ; For example, on Windows: 

    ; extension=msql.dll 

    ; ...  or under UNIX: 

    ; extension=msql.so 

    ; Note that it should be the name of the module only; no directory information 
    ; needs to go here. Specify the location of the extension with the 
    ; extension_dir directive above. 


    ; 如果你想自動裝載某些擴展,使用下面的語法 

    ; extension = modulename.extension 

    ; 例如在 Windows 下面 

    ; extension=msql.dll 

    ; 在 UNIX 下面 

    ; extension = msql.so 

    ; 注意,必須是模塊的名字,不能有其他指示。擴展的位置在 extension_dir 那里指定 




    ;Windows Extensions 
    ;Note that MySQL and ODBC support is now built in, so no dll is needed for it. 


    ; Windows 擴展 
    ; 注意,MySQL 和 ODBC 已經內置了,不需要 dll 了。 


    ;extension=php_bz2.dll 
    ;extension=php_ctype.dll 
    ;extension=php_cpdf.dll 
    ;extension=php_curl.dll 
    ;extension=php_cybercash.dll 
    ;extension=php_db.dll 
    ;extension=php_dba.dll 
    ;extension=php_dbase.dll 
    ;extension=php_dbx.dll 
    ;extension=php_domxml.dll 
    ;extension=php_dotnet.dll 
    ;extension=php_exif.dll 
    ;extension=php_fbsql.dll 
    ;extension=php_fdf.dll 
    ;extension=php_filepro.dll 
    ;extension=php_gd.dll 
    ;extension=php_gettext.dll 
    ;extension=php_hyperwave.dll 
    ;extension=php_iconv.dll 
    ;extension=php_ifx.dll 
    ;extension=php_iisfunc.dll 
    ;extension=php_imap.dll 
    ;extension=php_ingres.dll 
    ;extension=php_interbase.dll 
    ;extension=php_java.dll 
    ;extension=php_ldap.dll 
    ;extension=php_mbstring.dll 
    ;extension=php_mcrypt.dll 
    ;extension=php_mhash.dll 
    ;extension=php_ming.dll 
    ;extension=php_mssql.dll ; 這個是 Microsoft SQL Server 
    ;extension=php_oci8.dll 
    ;extension=php_openssl.dll 
    ;extension=php_oracle.dll 
    ;extension=php_pdf.dll 
    ;extension=php_pgsql.dll 
    ;extension=php_printer.dll 
    ;extension=php_sablot.dll 
    ;extension=php_shmop.dll 
    ;extension=php_snmp.dll 
    ;extension=php_sockets.dll 
    ;extension=php_sybase_ct.dll 
    ;extension=php_xslt.dll 
    ;extension=php_yaz.dll 
    ;extension=php_zlib.dll 


    ;;;;;;;;;;;;;;;;;;; 
    ; Module Settings ; 


    ; 模塊設置 


    ;;;;;;;;;;;;;;;;;;; 

    [Syslog] 

    ; 系統日志 

    ; Whether  or not to define the various syslog variables (e.g. $LOG_PID, 
    ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In 
    ; runtime, you can define these variables by calling define_syslog_variables(). 


    ; 是否定以不同的系統日志變量(例如,$LOG_PID,$LOG_CRON,等等)。為性能考慮,關閉比較好 
    ; 在運行期間,你可以通過調用 define_syslog_variables() 定以這些變量 


    define_syslog_variables = Off 

    [mail function] 

    ; 郵件函數 

    ; For Win32 only. 


    ; Win32 可用 


    SMTP = localhost 

    ; For Win32 only. 


    ; Win32 可用 


    sendmail_from = me@localhost.com 

    ; For Unix only. You may supply arguments as well (default: 'sendmail -t -i'). 


    ; Unix 可用,可以指定參數。(默認是 sendmail -t -i ) 


    ;sendmail_path = 

    [Logging] 

    ; 日志 

    ; These configuration directives are used by the example logging mechanism. 
    ; See examples/README.logging for more explanation. 


    ; 這些配置指示例子中的日志機制,查看 examples/README.logging 的詳細說明 


    ;logging.method = db 
    ;logging.directory = /path/to/log/directory 

    [Java] 

    ; Java 支持 


    ; 指向 php_java.jar 的位置 

    ;java.class.path = .\php_java.jar 


    ; 指向 java 安裝的目錄 

    ;java.home = c:\jdk 


    ; 指向虛擬機的目錄 

    ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 


    ; 指向 java 擴展所在的目錄,比如 c:\php\extensions 

    ;java.library.path = .\ 

    [SQL] 

    ; SQL 設置 

    sql.safe_mode = Off 

    [ODBC] 

    ; ODBC 設置 



    ; 默認的數據庫,尚未實現 

    ;odbc.default_db = Not yet implemented 


    ; 默認的用戶,尚未實現 

    ;odbc.default_user = Not yet implemented 


    ; 默認的密碼,尚未實現 

    ;odbc.default_pw = Not yet implemented 

    ; Allow  or prevent persistent links. 

    ; 允許或者防止持久連接 

    odbc.allow_persistent = On 

    ; Check that a connection is still valid before reuse. 

    ; 在連接重新使用前檢查是否依然合法 

    odbc.check_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大的持久連接數量,-1 代表不限制 

    odbc.max_persistent = -1 

    ; Maximum number of links (persistent + non-persistent). -1 means no limit. 

    ; 最大的連接數(持久 + 非持久),-1 代表不限制 

    odbc.max_links = -1 

    ; Handling of LONG fields. Returns number of bytes to variables. 0 means 
    ; passthru. 

    ; 處理超長的字段,返回可用的字節數量,0 代表 放棄(passthru) 

    odbc.defaultlrl = 4096 

    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. 
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation 
    ; of uodbc.defaultlrl and uodbc.defaultbinmode 

    ; 處理二進制數據。0 代表放棄(passthru),1 返回原始的,2 轉化為字符。 

    odbc.defaultbinmode = 1 

    [MySQL] 


    ; MySQL 配置 


    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    mysql.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大的持久連接數量,-1 無限 

    mysql.max_persistent = -1 

    ; Maximum number of links (persistent + non-persistent). -1 means no limit. 

    ; 最大的連接數量(持久+非持久), -1 無限 

    mysql.max_links = -1 

    ; Default port number for mysql_connect(). If unset, mysql_connect() will use 
    ; the $MYSQL_TCP_PORT  or the mysql-tcp entry in /etc/services  or the 
    ; compile-time value defined MYSQL_PORT (in that  order). Win32 will only look at MYSQL_PORT. 

    ; mysql_connect()默認的端口號。如果沒有設置,則使用 $MYSQL_TCP_PORT 或者 在 /etc/services 
    ; 里面的 mysql_tct 入口,或者運行期間給出的 MYSQL_PORT,Win32 只查看 MYSQL_PORT 

    mysql.default_port = 

    ; Default socket name for local MySQL connects. If empty, uses the built-in 
    ; MySQL defaults. 

    ; 默認的本地 MySQL 連接的 socket 名字,如果為空澤使用內置的 

    mysql.default_socket = 

    ; Default host for mysql_connect() (doesn't apply in safe mode). 

    ; 默認的連接主機(在安全模式下不使用) 

    mysql.default_host = 

    ; Default user for mysql_connect() (doesn't apply in safe mode). 

    ; 默認的用戶名(在安全模式不使用) 

    mysql.default_user = 

    ; Default password for mysql_connect() (doesn't apply in safe mode). 
    ; Note that this is generally a *bad* idea to store passwords in this file. 
    ; *Any* user with PHP access can run 'echo cfg_get_var("mysql.default_password") 
    ; and reveal this password! And of course, any users with read access to this 
    ; file will be able to reveal the password as well. 

    ; 默認的連接密碼(在安全模式下不使用) 
    ; 注意:在這里存儲密碼是一個非常不好的注意。任何可以訪問 PHP 的用戶可以通過 
    ; echo cfg_get_var("mysql.default_password")來獲得密碼。當然,任何擁有這個文件讀取 
    ; 權限的用戶同樣可以得到密碼。 

    mysql.default_password = 

    [mSQL] 
    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    msql.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大的持久連接數量,-1 無限 

    msql.max_persistent = -1 

    ; Maximum number of links (persistent+non persistent). -1 means no limit. 

    ; 最大的連接數量(持久+非持久), -1 無限 

    msql.max_links = -1 

    [PostgresSQL] 
    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    pgsql.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大的持久連接數量,-1 無限 

    pgsql.max_persistent = -1 

    ; Maximum number of links (persistent+non persistent). -1 means no limit. 

    ; 最大的連接數量(持久+非持久), -1 無限 

    pgsql.max_links = -1 

    [Sybase] 
    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    sybase.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大的持久連接數量,-1 無限 

    sybase.max_persistent = -1 

    ; Maximum number of links (persistent + non-persistent). -1 means no limit. 

    ; 最大的連接數量(持久+非持久), -1 無限 

    sybase.max_links = -1 

    ;sybase.interface_file = "/usr/sybase/interfaces" 

    ; Minimum error severity to display. 

    ; 顯示的最小錯誤 

    sybase.min_error_severity = 10 

    ; Minimum message severity to display. 

    ; 顯示最小錯誤信息 

    sybase.min_message_severity = 10 

    ; Compatability mode with old versions of PHP 3.0. 
    ; If on, this will cause PHP to automatically assign types to results according 
    ; to their Sybase type, instead of treating them all as strings. This 
    ; compatability mode will probably not stay around forever, so try applying 
    ; whatever necessary changes to your code, and turn it off. 

    ; 兼容于舊的 PHP 3.0 
    ; 如果為 on, 則PHP 根據他們的 Sybase 類型自動給結果賦予類型,而不是全部當成字符串。 
    ; 這個兼容模式在將來不會保留,所以請修改你的代碼,關閉這個參數 

    sybase.compatability_mode = Off 

    [Sybase-CT] 
    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    sybct.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大的持久連接數量,-1 無限 

    sybct.max_persistent = -1 

    ; Maximum number of links (persistent + non-persistent). -1 means no limit. 

    ; 最大的連接數量(持久+非持久), -1 無限 

    sybct.max_links = -1 

    ; Minimum server message severity to display. 

    ; 最小的服務器嚴重信息顯示 

    sybct.min_server_severity = 10 

    ; Minimum client message severity to display. 

    ; 最小的客戶端嚴重信息顯示 

    sybct.min_client_severity = 10 

    [bcmath] 



    ; Number of decimal digits for all bcmath functions. 

    ; bcmath 函數的十進制數字 

    bcmath.scale = 0 

    [browscap] 

    ; 用于判斷客戶信息 

    ;browscap = extra/browscap.ini 

    [Informix] 



    ; Default host for ifx_connect() (doesn't apply in safe mode). 

    ; 默認的連接主機(安全模式下無效) 

    ifx.default_host = 

    ; Default user for ifx_connect() (doesn't apply in safe mode). 

    ; 默認的連接用戶(安全模式下無效) 

    ifx.default_user = 

    ; Default password for ifx_connect() (doesn't apply in safe mode). 

    ; 默認的連接密碼(安全模式下無效) 

    ifx.default_password = 

    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    ifx.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大持久連接數量 

    ifx.max_persistent = -1 

    ; Maximum number of links (persistent + non-persistent). -1 means no limit. 

    ; 最大連接數量 

    ifx.max_links = -1 

    ; If on, select statements return the contents of a text blob instead of its id. 

    ; 如果為 on, 則選擇語句返回 text blob 代替編號 

    ifx.textasvarchar = 0 

    ; If on, select statements return the contents of a byte blob instead of its id. 

    ; 如果為 on,則選擇語句返回 byte blob 代替編號 

    ifx.byteasvarchar = 0 

    ; Trailing blanks are stripped from fixed-length char columns. May help the 
    ; life of Informix SE users. 
    ifx.charasvarchar = 0 

    ; If on, the contents of text and byte blobs are dumped to a file instead of 
    ; keeping them in memory. 
    ifx.blobinfile = 0 

    ; NULL's are returned as empty strings, unless this is set to 1. In that case, 
    ; NULL's are returned as string 'NULL'. 
    ifx.nullformat = 0 

    [Session] 

    ; Session 部分 


    ; Handler used to store/retrieve data. 

    ; 用于處理存儲/取得數據 

    session.save_handler = files 

    ; Argument passed to save_handler. In the case of files, this is the path 
    ; where data files are stored. Note: Windows users have to change this 
    ; variable in  order to use PHP's session functions. 

    ; 傳遞給 save_handleer 的參數,在 files 情況下,是數據存儲的路徑。 
    ; 注意,Windows 用戶需要修改這個變量來使用 PHP 的 session 功能 

    ; 我給出的路徑是我安裝 PHP的路徑,你可以改成任何你硬盤存在的路徑 

    session.save_path = c:\php 

    ; Whether to use cookies. 

    ; 是否使用 cookies 

    session.use_cookies = 1 


    ; Name of the session (used as cookie name). 

    ; session 的名字(用于 cookes ) 

    session.name = PHPSESSID 

    ; Initialize session on request startup. 

    ; 在請求開始時初始化 session 

    session.auto_start = 0 

    ; Lifetime in seconds of cookie  or, if 0, until browser is restarted. 

    ; cookie 的存活秒數,如果為 0 , 則是直到瀏覽器重新啟動 

    session.cookie_lifetime = 0 

    ; The path for which the cookie is valid. 

    ; 正確的 cookie 路徑 

    session.cookie_path = / 

    ; The domain for which the cookie is valid. 

    ; 存放數值的 cookie的主機(主鍵) 

    session.cookie_domain = 

    ; Handler used to serialize data. php is the standard serializer of PHP. 

    ; 序列化數據的句柄,標準句柄是 php 

    session.serialize_handler = php 

    ; Percentual probability that the 'garbage collection' process is started 
    ; on every session initialization. 

    ; 打開每個session初始化時自動開始垃圾收集進程 

    session.gc_probability = 1 

    ; After this number of seconds, stored data will be seen as 'garbage' and 
    ; cleaned up by the garbage collection process. 

    ; 當超過這個時間,存儲的的數據會被認為是垃圾,被 gc 進程清除 

    session.gc_maxlifetime = 1440 

    ; Check HTTP Referer to invalidate externally stored URLs containing ids. 

    ; 檢查包含 ids 的 HTTP 里無效的外部保存 URLs的內容 

    session.referer_check = 

    ; How many bytes to read from the file. 

    ; 從文件里讀入的允許字節數 

    session.entropy_length = 0 

    ; Specified here to create the session id. 

    ; 指定在這里建立 session id 

    session.entropy_file = 

    ;session.entropy_length = 16 

    ;session.entropy_file = /dev/urandom 

    ; Set to {nocache,private,public} to determine HTTP caching aspects. 

    ; 確定 HTTP 緩存外貌 {nocache,private,public} 

    session.cache_limiter = nocache 

    ; Document expires after n minutes. 

    ; 超過 n 分鐘文檔到期 

    session.cache_expire = 180 

    ; use transient sid support if enabled by compiling with --enable-trans-sid. 

    ; 如果在編譯時使用 --enable_trans-sid ,則使用短暫 sid 支持 

    session.use_trans_sid = 1 

    url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" 

    [MSSQL] 

    ; 這個就是 Microsoft Sql Server 


    ; Allow  or prevent persistent links. 

    ; 是否允許持久連接 

    mssql.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 

    ; 最大持久連接數 

    mssql.max_persistent = -1 

    ; Maximum number of links (persistent+non persistent). -1 means no limit. 

    ; 最大連接數 

    mssql.max_links = -1 

    ; Minimum error severity to display. 

    ; 顯示的最小錯誤嚴重 

    mssql.min_error_severity = 10 

    ; Minimum message severity to display. 

    ; 最小的顯示的嚴重信息 

    mssql.min_message_severity = 10 

    ; Compatability mode with old versions of PHP 3.0. 

    ; 兼容老的 PHP 3.0 

    mssql.compatability_mode = Off 

    ; Valid range 0 - 2147483647. Default = 4096. 

    ; 允許值 , 默認值 

    ;mssql.textlimit = 4096 

    ; Valid range 0 - 2147483647. Default = 4096. 

    ; 允許值, 默認值 

    ;mssql.textsize = 4096 

    ; Limits the number of records in each batch. 0 = all records in one batch. 

    ; 每個批次最大的紀錄數, 0 = 所有紀錄1個批次 

    ;mssql.batchsize = 0 

    [Assertion] 
    ; Assert(expr); active by default. 
    ;assert.active = On 

    ; Issue a PHP warning for each failed assertion. 
    ;assert.warning = On 

    ; Don't bail out by default. 
    ;assert.bail = Off 

    ; User-function to be called if an assertion fails. 
    ;assert.callback = 0 

    ; Eval the expression with current error_reporting(). Set to true if you want 
    ; error_reporting(0) around the eval(). 
    ;assert.quiet_eval = 0 

    [Ingres II] 
    ; Allow  or prevent persistent links. 
    ingres.allow_persistent = On 

    ; Maximum number of persistent links. -1 means no limit. 
    ingres.max_persistent = -1 

    ; Maximum number of links, including persistents. -1 means no limit. 
    ingres.max_links = -1 

    ; Default database (format: [node_id::]dbname[/srv_class]). 
    ingres.default_database = 

    ; Default user. 
    ingres.default_user = 

    ; Default password. 
    ingres.default_password = 

    [Verisign Payflow Pro] 
    ; Default Payflow Pro server. 
    pfpro.defaulthost = "test-payflow.verisign.com" 

    ; Default port to connect to. 
    pfpro.defaultport = 443 

    ; Default timeout in seconds. 
    pfpro.defaulttimeout = 30 

    ; Default proxy IP address (if required). 
    ;pfpro.proxyaddress = 

    ; Default proxy port. 
    ;pfpro.proxyport = 

    ; Default proxy logon. 
    ;pfpro.proxylogon = 

    ; Default proxy password. 
    ;pfpro.proxypassword = 

    [Sockets] 
    ; Use the system read() function instead of the php_read() wrapper. 

    ; 使用系統的 read() 函數代替 php_read() 封裝 

    sockets.use_system_read = On 

    [com] 

    ; COM 設置 

    ; path to a file containing GUIDs, IIDs  or filenames of files with TypeLibs 

    ; 指向包含 GUIDs,IIDs 或者 擁有 TypeLibs 文件的文件名的文件路徑 

    ;com.typelib_file = 

    ; allow Distributed-COM calls 

    ; 允許分布式 COM 調用 

    ;com.allow_dcom = true 

    ; autoregister constants of a components typlib on com_load() 

    ; 在 com_load()時自動注冊 typlib 組件的常量 

    ;com.autoregister_typelib = true 

    ; register constants casesensitive 

    ; 注冊常量區分大小寫 

    ;com.autoregister_casesensitive = false 

    ; show warnings on duplicate constat registrations 

    ; 重復注冊常量則給出警告 

    ;com.autoregister_verbose = true 

    [Printer] 
    ;printer.default_printer = "" 

    [mbstring] 
    ;mbstring.internal_encoding = EUC-JP 
    ;mbstring.http_input = auto 
    ;mbstring.http_output = SJIS 
    ;mbstring.detect_order = auto 
    ;mbstring.substitute_character = none; 

    [FrontBase] 
    ;fbsql.allow_persistant = On 
    ;fbsql.autocommit = On 
    ;fbsql.default_database = 
    ;fbsql.default_database_password = 
    ;fbsql.default_host = 
    ;fbsql.default_password = 
    ;fbsql.default_user = "_SYSTEM" 
    ;fbsql.generate_warnings = Off 
    ;fbsql.max_connections = 128 
    ;fbsql.max_links = 128 
    ;fbsql.max_persistent = -1 
    ;fbsql.max_results = 128 
    ;fbsql.mbatchSize = 1000 

    ; Local Variables: 
    ; tab-width: 4 
    ; End: 

    下載這個文件 php.ini 

    [PHP] 

    ;;;;;;;;;;;;;;;;;;; 
    ; About this file ; 

    ; 關于這個文件 

    ;;;;;;;;;;;;;;;;;;; 

    ; This is the recommended, PHP 4-style version of the php.ini-dist file. It 
    ; sets some non standard settings, that make PHP more efficient, more secure, 
    ; and encourage cleaner coding. 


    ; 這個是推薦的,PHP 4 版本類型的 php.ini-dist 文件,他設置了一些非標準的設置,他們使得 
    ; PHP更加有效,更加安全,鼓勵整潔的編碼。 


    ; The price is that with these settings, PHP may be incompatible with some 
    ; applications, and sometimes, more difficult to develop with. Using this 
    ; file is warmly recommended for production sites. As all of the changes from 
    ; the standard settings are thoroughly documented, you can go over each one, 
    ; and decide whether you want to use it  or not. 


    ; 這樣做的代價是,某些應用程序可能在這樣的配置下不兼容,在某些情況下,開發會更加困難。 
    ; 使用這個文件是我門對建設站點的熱心建議。每個標準設置的改變都有徹底的說明穩當,你可以 
    ; 處理沒一個,決定是否使用他們。 


    ; For general information about the php.ini file, please consult the php.ini-dist 
    ; file, included in your PHP distribution. 


    ; 關于 php.ini 的一般信息,請參考 php.ini-dist 文件,包括你的 PHP 的說明 


    ; This file is different from the php.ini-dist file in the fact that it features 
    ; different values for several directives, in  order to improve performance, while 
    ; possibly breaking compatibility with the standard out-of-the-box behavior of 
    ; PHP 3. Please make sure you read what's different, and modify your scripts 
    ; accordingly, if you decide to use this file instead. 


    ; 這個文件和 php.ini-dist 的區別在于它給予了一些指示不同的值,來提高性能,同時可能破壞了 
    ; PHP 3 的標準的 out-of-the-box 特性。 


    ; - register_globals = Off [Security, Performance] 
    ; Global variables are no longer registered for input data (POST, GET, cookies, 
    ; environment and other server variables). Instead of using $foo, you must use 
    ; you can use $_REQUEST["foo"] (includes any variable that arrives through the 
    ; request, namely, POST, GET and cookie variables),  or use one of the specific 
    ; $_GET["foo"], $_POST["foo"], $_COOKIE["foo"]  or $_FILES["foo"], depending 
    ; on where the input  originates. Also, you can look at the 
    ; import_request_variables() function. 
    ; Note that register_globals is going to be depracated (i.e., turned off by 
    ; default) in the next version of PHP, because it often leads to security bugs. 
    ; Read http://php.net/manual/en/security.registerglobals.php for further 
    ; information. 


    ; 全局變量不再注冊輸入的數據(POST,GET,cookies,環境變量和其他的服務器變量)。作為代替的是使用 
    ; $foo, 你必須使用 $_REQUEST["foo"] ( 包括所有的通過請求傳來的變量,也就是說,POST,GET,和 
    ; cookies 變量)或者根據輸入的來源使用指定的 $_GET["foo"],$_POST["foo"],$_COOKIE["foo"] 
    ; ,$_FILES["foo"] (訪問他們).同時,你可以查看 import_request_variables()函數。 

    ; 注意,這個參數可能在下個版本去掉(默認為off),因為他經常引起安全 bugs.到 
    http://php.net/manual/en/security.registerglobals.php 
    ; 查看詳細內容 


    ; - display_errors = Off [Security] 
    ; With this directive set to off, errors that occur during the execution of 
    ; scripts will no longer be displayed as a part of the script output, and thus, 
    ; will no longer be exposed to remote users. With some errors, the error message 
    ; content may expose information about your script, web server,  or database 
    ; server that may be exploitable for hacking. Production sites should have this 
    ; directive set to off. 


    ; 設置這個指示為Off,在腳本執行期間發生錯誤時,不再將錯誤作為輸出的一部分顯示,這樣就不會暴露給 
    ; 遠端用戶。對于某些錯誤,錯誤信息的內容可能暴露你的腳本,web服務器,數據庫服務器的信息,可能被 
    ; 黑客利用。最終產品占點需要設置這個指示為off. 


    ; - log_errors = On [Security] 
    ; This directive complements the above one. Any errors that occur during the 
    ; execution of your script will be logged (typically, to your server's error log, 
    ; but can be configured in several ways). Along with setting display_errors to off, 
    ; this setup gives you the ability to fully understand what may have gone wrong, 
    ; without exposing any sensitive information to remote users. 


    ; 這個指示補充上面的。所有的發生在腳本運行期間的錯誤都會紀錄在日志中(代表性的,記錄在服務器的錯誤 
    ; 日志中,但是可以配置不同的方式)。隨著 display_errors 設置為 off,這個設置給你全面了解到底什么 
    ; 發生錯誤的能力,而不會向遠端用戶暴露任何信息。 


    ; - output_buffering = 4096 [Performance] 
    ; Set a 4KB output buffer. Enabling output buffering typically results in less 
    ; writes, and sometimes less packets sent on the wire, which can often lead to 
    ; better performance. The gain this directive actually yields greatly depends 
    ; on which Web server you're working with, and what kind of scripts you're using. 


    ; 設置 4KB 的輸出緩沖區。打開輸出緩沖可以減少寫的次數,有時減少線路發送包的數量,這樣能提高性能。 
    ; 這個指示真正得到的益處很大程度的依賴于你的工作的 WEB 服務器,以及你使用的腳本。 


    ; - register_argc_argv = Off [Performance] 
    ; Disables registration of the somewhat redundant $argv and $argc global 
    ; variables. 


    ; 禁止注冊某些多于的 $argv 和 $argc 全局變量 


    ; - magic_quotes_gpc = Off [Performance] 
    ; Input data is no longer escaped with slashes so that it can be sent into 
    ; SQL databases without further manipulation. Instead, you should use the 
    ; function addslashes() on each input element you wish to send to a database. 


    ; 輸入數據不再被斜線轉義,以便于無需更多的處理就可以發送到SQL數據庫里面。作為代替,你可 
    ; 以對每個要發送到數據庫的輸入元素使用 addslashes()函數。 


    ; - variables_order = "GPCS" [Performance] 
    ; The environment variables are not hashed into the $HTTP_ENV_VARS[]. To access 
    ; environment variables, you can use getenv() instead. 

    ; 環境變量不再進入 $HTTP_ENV_VARS[],你需要用 getenv()來訪問環境變量。 


    ; - error_reporting = E_ALL [Code Cleanliness, Security(?)] 
    ; By default, PHP surpresses errors of type E_NOTICE. These error messages 
    ; are emitted for non-critical errors, but that could be a symptom of a bigger 
    ; problem. Most notably, this will cause error messages about the use 
    ; of uninitialized variables to be displayed. 


    ; 默認的,PHP 給出 E_NOTICE 錯誤類型,這些錯誤信息不是核心錯誤,但是可能是個更大錯誤的隱患。 
    ; 大多數提醒是那些沒有初始化變量引起的錯誤信息。 


    ; - allow_call_time_pass_reference = Off [Code cleanliness] 
    ; It's not possible to decide to force a variable to be passed by reference 
    ; when calling a function. The PHP 4 style to do this is by making the 
    ; function require the relevant argument by reference. 


    ; 在調用函數時,不可能決定強制傳遞變量的引用。PHP 4 里通過函數請求相關參數的引用來實現 




    ;;;;;;;;;;;;;;;;;;;; 
    ; Language Options ; 


    ; 語言配置 


    ;;;;;;;;;;;;;;;;;;;; 

    ; Enable the PHP scripting language engine under Apache. 


    ; 允許在Apache下的PHP腳本語言引擎 


    engine = On 

    ; Allow the tags are recognized. 


    ; 允許 標記 


    short_open_tag = On 

    ; Allow ASP-style tags. 


    ; 允許 ASP 類型的 標記 


    asp_tags = Off 

    ; The number of significant digits displayed in floating point numbers. 


    ; 浮點數顯示的有意義的數字(精度) 


    precision = 14 

    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers) 


    ; 強制遵從 2000 年(會在不遵從的瀏覽器上引起錯誤) 


    y2k_compliance = Off 

    ; Output buffering allows you to send header lines (including cookies) even 
    ; after you send body content, at the price of slowing PHP's output layer a 
    ; bit. You can enable output buffering during runtime by calling the output 
    ; buffering functions. You can also enable output buffering for all files by 
    ; setting this directive to On. If you wish to limit the size of the buffer 
    ; to a certain size - you can use a maximum number of bytes instead of 'On', as 
    ; a value for this directive (e.g., output_buffering=4096). 


    ; 輸出緩沖允許你在主體內容發送后發送頭信息行(包括 cookies),作為代價,會稍微減慢一點PHP 
    ; 輸出層的速度。你可以在運行期間通過調用輸出緩沖函數來打開輸出緩沖。你也可以通過設置這個 
    ; 指示來對雖有的文件打開輸出緩沖。如果你想限制緩沖區大小為某個尺寸,你可以使用一個允許最大 
    ; 的字節數值代替 "On",作為這個指示的值。 


    output_buffering = 4096 

    ; You can redirect all of the output of your scripts to a function. For 
    ; example, if you set output_handler to "ob_gzhandler", output will be 
    ; transparently compressed for browsers that support gzip  or deflate encoding. 
    ; Setting an output handler automatically turns on output buffering. 


    ; 你可以重新定向腳本所有輸出到一個函數。例如,你可以設置 output_handler 為 "ob_gzhandler", 
    ; 輸出將會被明顯的被壓縮到支持 gzip 或 deflate 編碼的瀏覽器。設置一個輸出管理會自動打開 
    ; 輸出緩沖 


    output_handler = 

    ; Transparent output compression using the zlib library 
    ; Valid values for this option are 'off', 'on',  or a specific buffer size 
    ; to be used for compression (default is 4KB) 


    ; 使用 zlib 庫進行輸出壓縮,可以指定 off/on 或者用于壓縮的緩沖大小 


    zlib.output_compression = Off 

    ; Implicit flush tells PHP to tell the output layer to flush itself 
    ; automatically after every output block. This is equivalent to calling the 
    ; PHP function flush() after each and every call to print()  or echo() and each 
    ; and every HTML block. Turning this option on has serious performance 
    ; implications and is generally recommended for debugging purposes only. 


    ; 隱含的通知PHP的輸出層在每個輸出塊后自己自動刷新。等同于在每個 print() 或者 echo() 
    ; 和每個HTML塊后面都調用 flush()函數。打開這個配置會引起嚴重的隱含執行,一般推薦在用于 
    ; 調試目的時使用。 


    implicit_flush = Off 

    ; Whether to enable the ability to force arguments to be passed by reference 
    ; at function call time. This method is deprecated and is likely to be 
    ; unsupported in future versions of PHP/Zend. The encouraged method of 
    ; specifying which arguments should be passed by reference is in the function 
    ; declaration. You're encouraged to try and turn this option Off and make 
    ; sure your scripts work properly with it in  order to ensure they will work 
    ; with future versions of the language (you will receive a warning each time 
    ; you use this feature, and the argument will be passed by value instead of by 
    ; reference). 


    ; 是否允許在函數調用期間有強制參數以引用的形式傳遞的能力。這個方法不贊成使用,在將來的 
    ; PHP和Zend版本里面可能不支持。鼓勵的方法是在函數聲明時指定哪個參數通過引用傳遞。鼓勵你 
    ; 嘗試關閉這個參數,確認你的腳本能夠正常運行,以便在以后版能里面正確運行(你會在每次使用 
    ; 這個特性時得到一個警告,并且參數以值來傳遞,代替引用) 


    allow_call_time_pass_reference = Off 



    ; Safe Mode 


    ; 安全模式 



    safe_mode = Off 

    ; By default, Safe Mode does a UID compare check when 
    ; opening files. If you want to relax this to a GID compare, 
    ; then turn on safe_mode_gid. 


    ; 安全模式默認的在打開文件時進行 UID 比較檢查,如果你想放寬他為GID比較,打開這個參數 


    safe_mode_gid = Off 

    ; When safe_mode is on, UID/GID checks are bypassed when 
    ; including files from this directory and its subdirectories. 
    ; (directory must also be in include_path  or full path must 
    ; be used when including) 


    ; 在安全模式,當包含如下目錄和子目錄文件時,繞過 UID/GID檢查(路徑必須在 include_path下面 
    ; 或者在包含時使用完整路徑 


    safe_mode_include_dir = 

    ; When safe_mode is on, only executables located in the safe_mode_exec_dir 
    ; will be allowed to be executed via the exec family of functions. 


    ; 在安全模式下,只有給出目錄下可以通過 exec 族函數執行 


    safe_mode_exec_dir = 

    ; open_basedir, if set, limits all file operations to the defined directory 
    ; and below. This directive makes most sense if used in a per-directory 
    ;  or per-virtualhost web server configuration file. 


    ; 如果設置,則限制所有的文件操作都到下面給出的目錄下。這個指示在每個目錄,每個虛擬主機的web 
    ; 服務器配置文件里給出更多的認識。 


    ;open_basedir = 

    ; Setting certain environment variables may be a potential security breach. 
    ; This directive contains a comma-delimited list of prefixes. In Safe Mode, 
    ; the user may only alter environment variables whose names begin with the 
    ; prefixes supplied here. By default, users will only be able to set 
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR). 

    ; Note: If this directive is empty, PHP will let the user modify ANY 
    ; environment variable! 


    ; 設置某些環境變量可能是隱藏的安全缺口。這個指示包含一個逗號分割的前綴指示。在安全模式下 
    ; 用戶只能修改下面提供的為前綴的變量名字。默認,用戶只能設置以 PHP_ 前綴開頭的環境變量( 
    ; 例如 PHP_FOO=BAR). 

    ; 注意:如果這個設置為空,則 PHP 可以讓用戶修改任何環境變量。 


    safe_mode_allowed_env_vars = PHP_ 

    ; This directive contains a comma-delimited list of environment variables that 
    ; the end user won't be able to change using putenv(). These variables will be 
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them. 


    ; 這個指示包含用逗號分割的不允許最終用戶通過 putenv()修改的環境變量的列表。這些變量即使 
    ; 在 safe_mode_allowed_env_vars 設置允許改變他們的情況下也被保護。 


    safe_mode_protected_env_vars = LD_LIBRARY_PATH 

    ; This directive allows you to disable certain functions for security reasons. 
    ; It receives a comma-delimited list of function names. This directive is 
    ; *NOT* affected by whether Safe Mode is turned On  or Off. 


    ; 這個指示用于在由于安全原因的情況下屏蔽某些函數。接受用逗號分割的函數名列表,這個指示不受 
    ; Safe Mode 是否打開的影響。 


    disable_functions = 

    ; Colors for Syntax Highlighting mode. Anything that's acceptable in 
    ; would work. 


    ; 語法加亮模式的顏色,任何 正常工作的都可以接受 


    highlight.string = #CC0000 
    highlight.comment = #FF9900 
    highlight.keyword = #006600 
    highlight.bg = #FFFFFF 
    highlight.default = #0000CC 
    highlight.html = #000000 



    ; Misc 

    ; Decides whether PHP may expose the fact that it is installed on the server 
    ; (e.g. by adding its signature to the Web server header). It is no security 
    ; threat in any way, but it makes it possible to determine whether you use PHP 
    ; on your server  or not. 


    ; 是否讓服務器暴露 PHP(例如在 web 服務器頭增加標記)。他不會有安全威脅,但是可以讓你 
    ; 檢測一個服務器是否使用了 PHP. 


    expose_php = On 


    ;;;;;;;;;;;;;;;;;;; 
    ; Resource Limits ; 


    ; 資源限制 



    ;;;;;;;;;;;;;;;;;;; 



    ; 每個腳本最大執行的秒數 


    max_execution_time = 30 ; Maximum execution time of each script, in seconds 



    ; 一個腳本最大消耗的內存 


    memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) 


    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 
    ; Error handling and logging ; 


    ; 錯誤處理和記錄 


    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 

    ; error_reporting is a bit-field. Or each number up to get desired error 
    ; reporting level 


    ; 錯誤報告是一個位字段,每個數值代表錯誤報告的等級 


    ; E_ALL - All errors and warnings 

    ; 所有的錯誤和警告 

    ; E_ERROR - fatal run-time errors 

    ; 致命的運行期錯誤 

    ; E_WARNING - run-time warnings (non-fatal errors) 

    ; 運行期警告(非致命錯誤) 

    ; E_PARSE - compile-time parse errors 

    ; 編譯期間解析錯誤 

    ; E_NOTICE - run-time notices (these are warnings which often result 
    ; from a bug in your code, but it's possible that it was 
    ; intentional (e.g., using an uninitialized variable and 
    ; relying on the fact it's automatically initialized to an 
    ; empty string) 

    ; 運行期間注意,一般是由于代碼的 bug 引起的警告,但是很可能是故意這樣的。例如使用沒有初始化 
    ; 的變量,依賴于他自動初始化為空的字符串。 

    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup 

    ; 發生在 PHP 的初始啟動階段的致命錯誤 

    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's 
    ; initial startup 

    ; 發生在 PHP 的初始啟動階段的警告(非致命錯誤) 

    ; E_COMPILE_ERROR - fatal compile-time errors 

    ; 致命的編譯期間錯誤 

    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) 

    ; 編譯期間的警告(非致命的錯誤) 

    ; E_USER_ERROR - user-generated error message 

    ; 用戶引起的錯誤信息 

    ; E_USER_WARNING - user-generated warning message 

    ; 用戶引起的警告信息 

    ; E_USER_NOTICE - user-generated notice message 

    ; 用戶引起的提醒信息 


    ; Examples: 

    ; - Show all errors, except for notices 

    ; 顯示所有錯誤,除了提醒 

    ;error_reporting = E_ALL & ~E_NOTICE 

    ; - Show only errors 

    ; 只顯示錯誤 

    ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR 

    ; - Show all errors except for notices 

    ; 顯示所有的錯誤(譯者注:英文可能有錯誤) 

    error_reporting = E_ALL 

    ; Print out errors (as a part of the output). For production web sites, 
    ; you're strongly encouraged to turn this feature off, and use error logging 
    ; instead (see below). Keeping display_errors enabled on a production web site 
    ; may reveal security information to end users, such as file paths on your Web 
    ; server, your database schema  or other information. 


    ; 輸出錯誤(作為輸出的一部分)。對于成品網站,強烈建議關閉這個特性,使用下面錯誤日志代替。 
    ; 在成品網站打開這個特性可能對最終用戶暴露安全信息。例如 WEB 服務器的文件路徑,數據庫計劃 
    ; 或其他信息。 


    display_errors = Off 

    ; Even when display_errors is on, errors that occur during PHP's startup 
    ; sequence are not displayed. It's strongly recommended to keep 
    ; display_startup_errors off, except for when debugging. 


    ; 即使 display_errors 參數設置位 on,發生在 PHP 的啟動順序期間的錯誤也不會顯示。 
    ; 強烈建議保持 display_startup_errors 為 off,除非在調試階段。 


    display_startup_errors = Off 

    ; Log errors into a log file (server-specific log, stderr,  or error_log (below)) 
    ; As stated above, you're strongly advised to use error logging in place of 
    ; error displaying on production web sites. 


    ; 把錯誤寫到一個日志文件里面(服務器指定日志,標準錯誤,或者后面的錯誤日志)。 
    ; 根據上面的一致性,強烈建議使用錯誤日志代替web站點的錯誤顯示。 


    log_errors = On 

    ; Store the last error/warning message in $php_errormsg (boolean). 


    ; 保存最后的錯誤/警告信息在 $php_errormsg(boolean)里面。 


    track_errors = Off 

    ; Disable the inclusion of HTML tags in error messages. 


    ; 屏蔽掉錯誤信息里面內含的HTML標記 


    ;html_errors = Off 

    ; String to output before an error message. 


    ; 錯誤信息前輸出的字符串 


    ;error_prepend_string = "" 

    ; String to output after an error message. 


    ; 錯誤信息后輸出的字符串。 


    ;error_append_string = "" 

    ; Log errors to specified file. 


    ; 錯誤寫進指定的文件 


    ;error_log = filename 

    ; Log errors to syslog (Event Log on NT, not valid in Windows 95). 
    ;error_log = syslog 

    ; Warn if the + operator is used with strings. 


    ; 在對字符串用 + 操作符時給出警告 


    warn_plus_overloading = Off 


    ;;;;;;;;;;;;;;;;; 
    ; Data Handling ; 


    ; 數據處理 


    ;;;;;;;;;;;;;;;;; 

    ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 

    ; 注意,在 PHP 4.0.3 里面, track_vars 總是打開的。 


    ; The separator used in PHP generated URLs to separate arguments. 
    ; Default is "&". 


    ; PHP在產生URLs時用于分割參數的分割符。默認是 "&" 


    ;arg_separator.output = "&" 

    ; List of separator(s) used by PHP to parse input URLs into variables. 
    ; Default is "&". 
    ; NOTE: Every character in this directive is considered as separator! 


    ; PHP用于把輸入的 URLs 解析為變量的分割符列表,默認是 "&"; 
    ; 注意:這個指示的每個字符都被認為是分割符 


    ;arg_separator.input = ";&" 

    ; This directive describes the  order in which PHP registers GET, POST, Cookie, 
    ; Environment and Built-in variables (G, P, C, E & S respectively, often 
    ; referred to as EGPCS  or GPC). Registration is done from left to right, newer 
    ; values override older values. 


    ; 這個指示描述PHP注冊 GET,POST,Cookes,環境變量和內部變量的順序(分別對應于 G,P,C,E 和 S, 
    ; 經常為 EGPCS 或者 GPC).注冊從左到右,新的值覆蓋舊的值。 


    variables_order = "GPCS" 

    ; Whether  or not to register the EGPCS variables as global variables. You may 
    ; want to turn this off if you don't want to clutter your scripts' global scope 
    ; with user data. This makes most sense when coupled with track_vars - in which 
    ; case you can access all of the GPC variables through the $HTTP_*_VARS[], 
    ; variables. 


    ; 是否注冊 EGPCS 變量為全局變量。如果你不想和用戶數據混淆腳本全局范圍,你可能想關閉他。 
    ; 結合 track_vars 可以更加理性。它可以讓你通過 $HTTP_*_VARS[] 訪問所有的GPC變量。 


    ; You should do your best to write your scripts so that they do not require 
    ; register_globals to be on; Using form variables as globals can easily lead 
    ; to possible security problems, if the code is not very well thought of. 


    ; 你可以盡力書寫不需要 register_globals 打開時的腳本。如果代碼沒有非常好的考慮是 
    ; 使用來源于全局變量的表單數據很容易引起安全問題。 


    register_globals = Off 

    ; This directive tells PHP whether to declare the argv&argc variables (that 
    ; would contain the GET information). If you don't use these variables, you 
    ; sh

    posts - 131, comments - 12, trackbacks - 0, articles - 32

    Copyright © yukui

    主站蜘蛛池模板: 国产精品视频免费观看| 国产精品成人免费观看| 波多野结衣中文字幕免费视频| 亚洲av无码不卡| 国产羞羞的视频在线观看免费| 国产精品亚洲精品日韩已满| 一区二区三区免费在线视频| 亚洲精品无码av天堂| 精品在线免费视频| 亚洲AV无码一区二三区| 精品人妻系列无码人妻免费视频| 亚洲最大av无码网址| 免费无码又爽又刺激一高潮| 亚洲AV无码久久精品蜜桃| 6080午夜一级毛片免费看6080夜福利| 亚洲综合一区二区精品导航| 在线观看无码AV网站永久免费| 亚洲国产精品无码中文lv| 亚洲av高清在线观看一区二区| 一区二区3区免费视频| 亚洲VA中文字幕无码一二三区| 99热这里有免费国产精品| 亚洲视频一区二区三区四区| 青青草国产免费久久久下载| 一区二区三区AV高清免费波多| 亚洲精品天天影视综合网| 一二三四视频在线观看中文版免费| 亚洲aⅴ无码专区在线观看| 亚洲开心婷婷中文字幕| 永久黄色免费网站| 亚洲AV日韩综合一区| 亚洲人成人无码网www电影首页| 亚洲视频免费一区| 暖暖免费中文在线日本| 久久亚洲私人国产精品| 国产精品国产免费无码专区不卡| 国产一级黄片儿免费看| 日韩亚洲不卡在线视频中文字幕在线观看 | 18级成人毛片免费观看| 久久精品国产亚洲AV电影网| 精品亚洲永久免费精品|