1--TEST-- 2mysqli ping 3--EXTENSIONS-- 4mysqli 5--SKIPIF-- 6<?php 7require_once 'skipifconnectfailure.inc'; 8?> 9--FILE-- 10<?php 11 require_once 'connect.inc'; 12 13 $mysql = new my_mysqli($host, $user, $passwd, $db, $port, $socket); 14 var_dump($mysql->ping()); 15 $mysql->close(); 16 print "done!"; 17?> 18--EXPECTF-- 19 20Deprecated: Method mysqli::ping() is deprecated since 8.4, because the reconnect feature has been removed in PHP 8.2 and this method is now redundant in %s 21bool(true) 22done! 23