Home > Backend Development > PHP Tutorial > Chinese PHP.INI(2)_PHP Tutorial

Chinese PHP.INI(2)_PHP Tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:11:34
Original
772 people have browsed it

;;;;;;;;;;;;;;;;;;;;;;;;;
; 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

truehttp: //www.bkjia.com/PHPjc/629562.htmlTechArticle;;;;;;;;;;;;;;;;;;;;;;;;; ; ; Paths and Directories ; ;;;;;;;;;;;;;;;;;;;;;;;;;; include_path =; include path settings, UNIX: /path1:/path2 Windows: path1;path2 doc_root = ; php page...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template