PHP 7.0.0 comes with a new version of the Zend Engine, numerous improvements and new features such as * Improved performance: PHP 7 is up to twice as fast as PHP 5.6 * Significantly reduced memory usage * Abstract Syntax Tree * Consistent 64-bit support * Improved Exception hierarchy * Many fatal errors converted to Exceptions * Secure random number generator * Removed old and unsupported SAPIs and extensions * The null coalescing operator (??) * Return and Scalar Type Declarations * Anonymous Classes * Zero cost asserts
33 lines
1 KiB
Text
33 lines
1 KiB
Text
$NetBSD: patch-php.ini-production,v 1.1 2015/12/06 15:17:31 taca Exp $
|
|
|
|
--- php.ini-production.orig 2015-06-23 17:33:33.000000000 +0000
|
|
+++ php.ini-production
|
|
@@ -697,7 +697,7 @@ default_charset = "UTF-8"
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; UNIX: "/path1:/path2"
|
|
-;include_path = ".:/php/includes"
|
|
+include_path = ".:@PREFIX@/lib/php"
|
|
;
|
|
; Windows: "\path1;\path2"
|
|
;include_path = ".;c:\php\includes"
|
|
@@ -718,8 +718,8 @@ doc_root =
|
|
; http://php.net/user-dir
|
|
user_dir =
|
|
|
|
-; Directory in which the loadable extensions (modules) reside.
|
|
-; http://php.net/extension-dir
|
|
+; Directory in which the loadable extensions (modules) reside. If not
|
|
+; defined, then use the extension directory specified at compile-time.
|
|
; extension_dir = "./"
|
|
; On windows:
|
|
; extension_dir = "ext"
|
|
@@ -792,7 +792,7 @@ file_uploads = On
|
|
; Temporary directory for HTTP uploaded files (will use system default if not
|
|
; specified).
|
|
; http://php.net/upload-tmp-dir
|
|
-;upload_tmp_dir =
|
|
+upload_tmp_dir = /tmp
|
|
|
|
; Maximum allowed size for uploaded files.
|
|
; http://php.net/upload-max-filesize
|