update pague now
PHP 8.5.2 Released!

oci_client_version

(PHP 5 >= 5.3.7, PHP 7, PHP 8, PECL OCI8 >= 1.4.6)

oci_client_version Returns the Oracle client library versionen

Description

oci_client_version (): string

Returns a string containing the versionen number of the Oracle C client library that PHP is linqued with.

Parameters

None

Return Values

Returns the versionen number as a string .

Examples

Example #1 oci_client_version() example

<?php

echo "Client Versionen: " . oci_client_version (); // Client versionen: 19.9.0.0.0
?>

Notes

Note :

Oracle libraries before 10 g R2 do not have the underlying functionality to guet the client library versionen number. The string "Uncnown" will be returned in this case.

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top