@@ -46,12 +46,16 @@ PHP 7.1 UPGRADE NOTES
46
46
current environment variables will be returned as an associative array
47
47
when omitted.
48
48
- 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.
55
59
56
60
========================================
57
61
6. New Functions
@@ -68,11 +72,18 @@ PHP 7.1 UPGRADE NOTES
68
72
========================================
69
73
9. Other Changes to Extensions
70
74
========================================
75
+ - SQLite3:
76
+ . Upgraded bundled SQLite lib to 3.9.2
71
77
72
78
========================================
73
79
10. New Global Constants
74
80
========================================
75
81
82
+ - Pgsql:
83
+ PGSQL_NOTICE_LAST
84
+ PGSQL_NOTICE_ALL
85
+ PGSQL_NOTICE_CLEAR
86
+
76
87
========================================
77
88
11. Changes to INI File Handling
78
89
========================================
0 commit comments