Catch The Exception
<?php
try {
$tt = new TokyoTyrant("192.168.1.100", 11211);
}catch (TokyoTyrantException $e) {
var_dump($e);
exit;
}
?>
TokyoTyrant::__construct
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::__construct — Construct a new TokyoTyrant object
Descripción
TokyoTyrant::__construct
([ string $host
[, int $port = TokyoTyrant::RDBDEF_PORT
[, array $options
]]] )
Constructs a new TokyoTyrant object and optionally connects to the database
Parámetros
- host
-
The hostname. Default: NULL
- port
-
port number. Default: 1978
- options
-
Connection options: timeout (default: 5.0), reconnect (default: TRUE) and persistent (default: TRUE)
Valores devueltos
Throws TokyoTyrantException if connection to database fails
Ver también
- TokyoTyrant::connect() - Connect to a database
- TokyoTyrant::connectUri() - Connects to a database
bit dot kevin at gmail dot com
25-Sep-2010 09:55
