Skip to content

Commit 91183dd

Browse files
authored
ext/pdo, ext/pgsql: Add PHP 8.4.0 changelog entries for PGSQL and PDO pages (#5364)
Add missing 8.4.0 changelog entries to document: - pg_fetch_result: 2-argument signature deprecated - pg_field_prtlen: 2-argument signature deprecated - pg_field_is_null: 2-argument signature deprecated - PDO::getAttribute: ATTR_STRINGIFY_FETCHES now fetchable
1 parent 07b2f1d commit 91183dd

4 files changed

Lines changed: 56 additions & 0 deletions

File tree

reference/pdo/pdo/getattribute.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,29 @@
7979
</para>
8080
</refsect1>
8181

82+
<refsect1 role="changelog">
83+
&reftitle.changelog;
84+
<informaltable>
85+
<tgroup cols="2">
86+
<thead>
87+
<row>
88+
<entry>&Version;</entry>
89+
<entry>&Description;</entry>
90+
</row>
91+
</thead>
92+
<tbody>
93+
<row>
94+
<entry>8.4.0</entry>
95+
<entry>
96+
It is now possible to fetch the value of the
97+
<constant>PDO::ATTR_STRINGIFY_FETCHES</constant> attribute.
98+
</entry>
99+
</row>
100+
</tbody>
101+
</tgroup>
102+
</informaltable>
103+
</refsect1>
104+
82105
<refsect1 role="examples">
83106
&reftitle.examples;
84107
<para>

reference/pgsql/functions/pg-fetch-result.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,17 @@
9090
</row>
9191
</thead>
9292
<tbody>
93+
<row>
94+
<entry>8.4.0</entry>
95+
<entry>
96+
The two argument signature of
97+
<function>pg_fetch_result</function>
98+
(<parameter>result</parameter>,
99+
<parameter>field</parameter>) is now deprecated.
100+
Use the three argument signature with
101+
<parameter>row</parameter> set to &null; instead.
102+
</entry>
103+
</row>
93104
<row>
94105
<entry>8.3.0</entry>
95106
<entry>

reference/pgsql/functions/pg-field-is-null.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,17 @@
8282
</row>
8383
</thead>
8484
<tbody>
85+
<row>
86+
<entry>8.4.0</entry>
87+
<entry>
88+
The two argument signature of
89+
<function>pg_field_is_null</function>
90+
(<parameter>result</parameter>,
91+
<parameter>field</parameter>) is now deprecated.
92+
Use the three argument signature with
93+
<parameter>row</parameter> set to &null; instead.
94+
</entry>
95+
</row>
8596
<row>
8697
<entry>8.3.0</entry>
8798
<entry>

reference/pgsql/functions/pg-field-prtlen.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,17 @@
8383
</row>
8484
</thead>
8585
<tbody>
86+
<row>
87+
<entry>8.4.0</entry>
88+
<entry>
89+
The two argument signature of
90+
<function>pg_field_prtlen</function>
91+
(<parameter>result</parameter>,
92+
<parameter>field_name_or_number</parameter>) is now deprecated.
93+
Use the three argument signature with
94+
<parameter>row</parameter> set to &null; instead.
95+
</entry>
96+
</row>
8697
<row>
8798
<entry>8.3.0</entry>
8899
<entry>

0 commit comments

Comments
 (0)