(PHP 5, PHP 7)
mysqli::ping -- mysqli_ping — ping һ�����ӣ�����������Ӵ��ڶϿ�״̬����������
���������
���̻����
��鵽�������������Ƿ������� ������ mysqli.reconnect ѡ���ǰ���£� ��������Ѿ��Ͽ��� ping �����᳢�����½������ӡ�
Note: mysqlnd ��������� php.ini �е� mysqli.reconnect ѡ� �����������Զ�������
�ͻ��˽�������֮��ʱ�䴦������״̬�� �����ô˺��������������Ƿ�ر���������ӣ� ���б�Ҫ�������Զ����½����������������ӡ�
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #1 mysqli::ping() ����
���������
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* ������� */
if ($mysqli->connect_errno) {
printf("Connect failed: %s\n", $mysqli->connect_error);
exit();
}
/* ��������Ƿ�Ծ */
if ($mysqli->ping()) {
printf ("Our connection is ok!\n");
} else {
printf ("Error: %s\n", $mysqli->error);
}
/* �ر����� */
$mysqli->close();
?>
���̻����
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* ������� */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
/* ��������Ƿ�Ծ */
if (mysqli_ping($link)) {
printf ("Our connection is ok!\n");
} else {
printf ("Error: %s\n", mysqli_error($link));
}
/* �ر����� */
mysqli_close($link);
?>
�������̻������
Our connection is ok!