;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;;;;;;;;;;;;;; ;;;;;;;;;;;
include_path = ; include path setting, UNIX: "/path1:/path2"
Windows: "path1;path2"
doc_root = ; php
The root path of the page, only valid when it is not empty
user_dir = ; tells php
which directory to go to when opening the script with /~username, it is only valid when it is not empty
;upload_tmp_dir = ;
Temporary directory for storing files uploaded using HTTP protocol (use the system default if not specified)
upload_max_filesize = 2097152 ; File upload is limited to 2 Meg by default
extension_dir = c:php ;
Storage Directory of loadable extension libraries (modules)
enable_dl = On ; Whether to enable dl().
;
The dl() function *doesn't* work well on multi-threaded servers,
;
such as IIS or Zeus, and is disabled by default on them
;;; ;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;;;
file_uploads = On ; Whether to allow HTTP mode File upload
;upload_tmp_dir = ;
Temporary directory for files uploaded by HTTP (system default is used if not specified)
upload_max_filesize = 2M; Maximum allowed size of uploaded files
; Fopen wrappers;
;;;;;;;;;;;;;;;;;;
allow_url_fopen = On ; Whether to allow URLs to be treated as http:..
or files as ftp:...
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
; Dynamic Extensions ;;;;;;;; ;;;;;;;;;;;;;;;
; If you want an extension library to be loaded automatically, use the following syntax:
; extension=modulename.extension
; For example, on Windows ,
; extension=msql.dll
; or under UNIX,
; extension=msql.so
; Note that this should only be the name of the module, no directory information is required to be placed in it.
; Use the extension_dir directive above to specify the location of the extension library.
;Windows extension
;extension=php_nsmail.dll
extension=php_calendar.dll
http://www.bkjia.com/PHPjc/629562.html