@@ -46,12 +46,16 @@ PHP 7.1 UPGRADE NOTES
4646 current environment variables will be returned as an associative array
4747 when omitted.
4848- long2ip() accepts integer as parameter now
49- - pg_last_notice() accepts optional 2nd bool parameter to get all notices and
50- returns empty string or array on successful calls. It returned FALSE for
51- empty notice previously.
52- - pg_fetch_all() accepts optional 2nd bool parameter to get numerically indexed
53- rows.
54- - pg_select() accepts PGSQL_FETCH_NUM option to get numerically indexed rows.
49+ - pg_last_notice() accepts optional long parameter to specify operation.
50+ PGSQL_NOTICE_LAST - Get last notice (Default)
51+ PGSQL_NOTICE_ALL - Get all stored notices
52+ PGSQL_NOTICE_CLEAR - Remove all stored notices
53+ It returns empty string or array on successful PGSQL_NOTICE_LAST/ALL calls.
54+ It returned FALSE for empty notice previously.
55+ - pg_fetch_all() accepts 2nd optional result type parameter like
56+ pg_fetch_row().
57+ - pg_select() accepts 4th optional result type parameter like pg_fetch_row().
58+ - parse_url() is more restrictive now and supports RFC3986.
5559
5660========================================
57616. New Functions
@@ -68,11 +72,18 @@ PHP 7.1 UPGRADE NOTES
6872========================================
69739. Other Changes to Extensions
7074========================================
75+ - SQLite3:
76+ . Upgraded bundled SQLite lib to 3.9.2
7177
7278========================================
737910. New Global Constants
7480========================================
7581
82+ - Pgsql:
83+ PGSQL_NOTICE_LAST
84+ PGSQL_NOTICE_ALL
85+ PGSQL_NOTICE_CLEAR
86+
7687========================================
778811. Changes to INI File Handling
7889========================================
0 commit comments