php测试oracle链接是否成功

$conn = oci_connect('eoffice', 'hdujiedian', '//192.168.100.21/hziee');
if (!$conn) {
$e = oci_error();
print htmlentities($e['message']);
exit;
}else {
echo "连接oracle成功!";
}

原文地址:https://www.cnblogs.com/MichaelZhangX/p/3435736.html