php配置文件php.ini的詳細解析

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


; Enable the PHP scripting language engine under Apache.
; 是否開啓引擎

engine = Onphp


;是否使用短標籤<? ?>,而通常咱們使用的是<?php ?>html

short_open_tag = Off
瀏覽器


;支持是否使用ASP-style <% %> tags緩存

asp_tags = Off安全


浮點數中顯示有效數字的位數。函數

precision = 14
post


強制 2000 年兼容(在不兼容的瀏覽器中會出問題大數據

y2k_compliance = On
spa



; Note: This directive is hardcoded to Off for the CLI SAPI
; Default Value: Off
; Development Value: 4096
; Production Value: 4096
; 輸出緩存,選擇開啓,大小是4k
output_buffering = On
code


; Note: You need to use zlib.output_handler instead of the standard
;   output_handler, or otherwise the output will be corrupted.

zlib.output_compression = Off


allow_call_time_pass_reference = Off                                         //容許按值引用與否,這裏選擇的是不容許

 

safe_mode = Off                                                                           //是否設置成安全模式,這裏選擇的是否


safe_mode_gid = Off                                                                     //      安全模式的id



safe_mode_include_dir =                                                             //安全模式包含文件的目錄


safe_mode_exec_dir =                                                                //安全模式執行文件的目錄


safe_mode_allowed_env_vars = PHP_                                      //安全模式下的默認前綴


safe_mode_protected_env_vars = LD_LIBRARY_PATH          //安全模式下保護設定的前綴


disable_classes =                                                                   //由於安全緣由,不容許使用的class

 

expose_php = On                                                                  //在安裝的過程當中是否顯示


max_execution_time = 30                                                     //最大的執行時間,單位是秒,0表示不限制


max_input_time = 60                                                              //容許輸入的最長時間,單位是秒,0表示不限制


memory_limit = 128M                                                          //容許一個程序所使用的最大內存數


error_reporting = E_ALL                                                       //報告出全部的錯誤,警告


display_errors = On                                                              //是否將錯誤顯示出來


display_startup_errors = On                                                   //是否將啓動期間的錯誤顯示出來


log_errors = On                                                                     //是否將錯誤寫入到log文件中去


log_errors_max_len = 1024                                                     //記錄錯誤的最大長度。0表示不限制


ignore_repeated_errors = Off                                                 //是否忽略重複出現的錯誤,這裏選的是否


ignore_repeated_source = Off                                               //是否忽略重複出現的資源,這裏選擇的是否


report_memleaks = On                                                           //是否報告內存泄漏,選擇的是


track_errors = On                                                                  //是否記錄錯誤路徑


html_errors = On                                                                     //是否顯示html中的錯誤


post_max_size = 8M                                                            //post能傳遞的最大數據


extension_dir = "d:/wamp/bin/php/php5.3.10/ext/"              //擴展程序的文件目錄


enable_dl = Off                                                                    //是否容許使用dl函數

相關文章
相關標籤/搜索