<?php
$conn = oci_connect("hr", "hrpwd", "localhost/XE");
echo "サーバーのバージョン: " . oci_server_version($conn);
// 出力は
// サーバーのバージョン: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
// With the Partitioning, OLAP, Data Mining and Real Application Testing option
oci_close($conn);
?>