10000 fixes on mysqli, openssl, readline tests by hyh19962008 · Pull Request #18991 · php/php-src · GitHub
[go: up one dir, main page]

Skip to content

fixes on mysqli, openssl, readline tests #18991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update ext\mysqli\tests\mysqli_fetch_assoc_no_alias_utf8.phpt
  • Loading branch information
hyh19962008 committed Jul 2, 2025
commit 26f2cfd38aa580c8a47bfb17818683e0749c673f
2 changes: 1 addition & 1 deletion ext/mysqli/tests/mysqli_fetch_assoc_no_alias_utf8.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mysqli
if (!$link = @mysqli_connect($host, $user, $passwd, $db, $port, $socket))
die(sprintf("skip Can't connect to MySQL Server - [%d] %s", mysqli_connect_errno(), mysqli_connect_error()));

if (!$res = mysqli_query($link, "SHOW CHARACTER SET LIKE '%UTF8%'"))
if (!$res = mysqli_query($link, "SHOW CHARACTER SET LIKE 'UTF8%'"))
die("skip Cannot run SHOW CHARACTER SET to check charsets");

if (!$tmp = mysqli_fetch_assoc($res))
Expand Down
0