diff options
author | Stig Bakken <ssb@php.net> | 2000-02-25 21:27:03 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-02-25 21:27:03 +0000 |
commit | d23e5d837add8aa68b4376ff6c4b3ba6b201b894 (patch) | |
tree | a7317cc78c8a5e75eede50ed1043ca24a71bcf65 /php.ini-dist | |
parent | 117087697414b89077b2485ed3796f62f75750f9 (diff) | |
download | php-git-d23e5d837add8aa68b4376ff6c4b3ba6b201b894.tar.gz |
@- Implemented default_charset and default_mimetype config directives (Stig)
Implemented default_charset and default_mimetype configuration directives.
Started implementing ticks in PHP.
Diffstat (limited to 'php.ini-dist')
-rw-r--r-- | php.ini-dist | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 6ae1e5bd75..2c817081d0 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -183,6 +183,12 @@ magic_quotes_sybase = Off ; Use Sybase-style magic quotes (escape ' with '' ins auto_prepend_file = auto_append_file = +; As of 4.0b4, PHP always outputs a character encoding by default in +; the Content-type: header. Set default_charset to "none" to disable +; this. PHP's built-in default is text/html with the iso-8859-1 +; charset. +;default_mimetype = "text/html" +;default_charset = "iso-8859-1" ;;;;;;;;;;;;;;;;;;;;;;;;; ; Paths and Directories ; @@ -386,3 +392,6 @@ mssql.compatability_mode = Off ; compatability mode with old versions of PHP 3.0 ;assert.callback = 0 ; user-function to be called if an assertion fails. ;assert.quiet_eval = 0 ; eval the expression with current error_reporting(). set to true if you want error_reporting(0) around the eval(). +; Local Variables: +; tab-width: 4 +; End: |