📅  最后修改于: 2022-03-11 14:53:51.005000             🧑  作者: Mango
';
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS+OCI_ASSOC)) {
print '';
foreach ($row as $item) {
print ''.($item?htmlentities($item):' ').' ';
}
print ' ';
}
print '';
// Close the Oracle connection
oci_close($conn);
?>