Skip to content

Commit 62a3bbd

Browse files
Remove MYSQLI_SET_CHARSET_DIR (#14724)
1 parent 88da914 commit 62a3bbd

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

UPGRADING

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,10 @@ PHP 8.4 UPGRADE NOTES
704704
- MBString:
705705
. Unicode data tables have been updated to Unicode 15.1.
706706

707+
- mysqli:
708+
. The unused and undocumented constant MYSQLI_SET_CHARSET_DIR
709+
has been removed.
710+
707711
- OpenSSL:
708712
. The OpenSSL extension now requires at least OpenSSL 1.1.1.
709713

ext/mysqli/mysqli.stub.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -436,11 +436,6 @@
436436
* @cvalue MYSQL_SET_CHARSET_NAME
437437
*/
438438
const MYSQLI_SET_CHARSET_NAME = UNKNOWN;
439-
/**
440-
* @var int
441-
* @cvalue MYSQL_SET_CHARSET_DIR
442-
*/
443-
const MYSQLI_SET_CHARSET_DIR = UNKNOWN;
444439

445440
/* bind support */
446441
/**

ext/mysqli/mysqli_arginfo.h

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/mysqli/tests/mysqli_constants.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ $expected_constants = array(
8282
"MYSQLI_REPORT_ERROR" => true,
8383
"MYSQLI_REPORT_OFF" => true,
8484
"MYSQLI_SET_CHARSET_NAME" => true,
85-
"MYSQLI_SET_CHARSET_DIR" => true,
8685
"MYSQLI_REFRESH_GRANT" => true,
8786
"MYSQLI_REFRESH_LOG" => true,
8887
"MYSQLI_REFRESH_TABLES" => true,

0 commit comments

Comments
 (0)