Skip to content

Commit fc14f17

Browse files
committed
remove ZWSP
1 parent 158788e commit fc14f17

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

UPGRADING

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ PHP 8.4 UPGRADE NOTES
9292

9393
- PDO_MYSQL:
9494
. getAttribute, ATTR_AUTOCOMMIT, ATTR_EMULATE_PREPARES, MYSQL_ATTR_DIRECT_QUERY have
95-
been changed to get values ​​as bool.
95+
been changed to get values as bool.
9696

9797
- PDO_PGSQL:
9898
. The DSN's credentials, when set, are given priority over their PDO
@@ -368,7 +368,7 @@ PHP 8.4 UPGRADE NOTES
368368
. getAttribute, enabled to get the value of ATTR_STRINGIFY_FETCHES.
369369

370370
- PDO_FIREBIRD:
371-
. getAttribute, enabled to get values ​​of FB_ATTR_DATE_FORMAT, FB_ATTR_TIME_FORMAT,
371+
. getAttribute, enabled to get values of FB_ATTR_DATE_FORMAT, FB_ATTR_TIME_FORMAT,
372372
FB_ATTR_TIMESTAMP_FORMAT.
373373
. Added new attributes to specify transaction isolation level and access mode.
374374
Along with these, five constants (PDO::FB_TRANSACTION_ISOLATION_LEVEL,
@@ -414,7 +414,7 @@ PHP 8.4 UPGRADE NOTES
414414
"pre-rounding" to treat a value like 0.285 (actually 0.28499999999999998) as a
415415
decimal number and round it to 0.29. However, "pre-rounding" incorrectly rounds
416416
certain numbers, so this fix removes "pre-rounding" and changes the way numbers
417-
are compared, so that the values ​​are correctly rounded as decimal numbers.
417+
are compared, so that the values are correctly rounded as decimal numbers.
418418
. long2ip() now returns string instead of string|false.
419419
. The maximum precision that can be handled by round() has been extended by
420420
one digit.

ext/pdo_firebird/firebird_driver.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ static bool php_firebird_begin_transaction(pdo_dbh_t *dbh, bool is_auto_commit_t
780780
/*
781781
* firebird's `read committed` has the option to wait until other transactions
782782
* commit or rollback if there is indeterminate data.
783-
* Introducing too many configuration values ​​at once can cause confusion, so
783+
* Introducing too many configuration values at once can cause confusion, so
784784
* we don't support in PDO that feature yet.
785785
*/
786786
case PDO_FB_READ_COMMITTED:

0 commit comments

Comments
 (0)