foreach (get_class_methods('OCI-Lob') as $method ) {
echo "OCI-Lob::$method()\n";
}
http://www.oracle.com/technology/pub/articles/
oracle_php_cookbook/fuecks_lobs.html
(PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0)
OCILob::eof — Test la fin du LOB Oracle
Vérifie si le pointeur interne d'un LOB est à la fin.
Retourne true
si le pointeur interne de LOB a atteint la fin
du LOB, et false
sinon.
Note:
Cette fonction retournera une erreur Oracle si OCILob::setBuffering est actif sur le LOB.
Version | Description |
---|---|
8.0.0, PECL OCI8 3.0.0 | La classe OCI-Lob a été renommée en OCILob pour aligner avec les standards de nommage PHP. |
foreach (get_class_methods('OCI-Lob') as $method ) {
echo "OCI-Lob::$method()\n";
}
http://www.oracle.com/technology/pub/articles/
oracle_php_cookbook/fuecks_lobs.html