mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
optimize skip condition for the test
This commit is contained in:
parent
f699c96ec3
commit
db64aa3cfd
1 changed files with 2 additions and 2 deletions
|
@ -5,8 +5,8 @@ mysqli
|
|||
--SKIPIF--
|
||||
<?php
|
||||
require_once 'skipifconnectfailure.inc';
|
||||
if (stristr(mysqli_get_client_info(), 'mysqlnd')) {
|
||||
die("skip: only applicable for libmysqlclient");
|
||||
if ($IS_MYSQLND) {
|
||||
die("skip only applicable for libmysqlclient");
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue