मैंने उसी समस्या का समाधान खोजने की कोशिश की और मुझे अगला उत्तर मिला:
class NPDO {
private $pdo;
private $params;
public function __construct() {
$this->params = func_get_args();
$this->init();
}
public function __call($name, array $args) {
return call_user_func_array(array($this->pdo, $name), $args);
}
// The ping() will try to reconnect once if connection lost.
public function ping() {
try {
$this->pdo->query('SELECT 1');
} catch (PDOException $e) {
$this->init(); // Don't catch exception here, so that re-connect fail will throw exception
}
return true;
}
private function init() {
$class = new ReflectionClass('PDO');
$this->pdo = $class->newInstanceArgs($this->params);
}
}
पूरी कहानी यहां:https://terenceyim. wordpress.com/2009/01/09/adding-ping-function-to-pdo/
कोई अन्य व्यक्ति PDO::ATTR_CONNECTION_STATUS का उपयोग करने के बारे में सोच रहा था , लेकिन उसे पता चला कि:"$db->getAttribute(PDO::ATTR_CONNECTION_STATUS)
mysqld को रोकने के बाद भी "लोकलहोस्ट UNIX सॉकेट के माध्यम से" का जवाब देता रहता है।