xref: /PHP-8.3/ext/oci8/tests/lob_aliases.phpt (revision 605c60cd)
1--TEST--
2LOB method aliases
3--EXTENSIONS--
4oci8
5--FILE--
6<?php
7
8// Function existence
9echo "Test 1\n";
10var_dump(function_exists('oci_lob_load'));
11var_dump(function_exists('oci_lob_tell'));
12var_dump(function_exists('oci_lob_truncate'));
13var_dump(function_exists('oci_lob_erase'));
14var_dump(function_exists('oci_lob_flush'));
15var_dump(function_exists('ocisetbufferinglob'));
16var_dump(function_exists('ocigetbufferinglob'));
17var_dump(function_exists('oci_lob_rewind'));
18var_dump(function_exists('oci_lob_read'));
19var_dump(function_exists('oci_lob_eof'));
20var_dump(function_exists('oci_lob_seek'));
21var_dump(function_exists('oci_lob_write'));
22var_dump(function_exists('oci_lob_append'));
23var_dump(function_exists('oci_lob_size'));
24var_dump(function_exists('oci_lob_export'));
25var_dump(function_exists('oci_lob_export'));
26var_dump(function_exists('oci_lob_import'));
27var_dump(function_exists('oci_lob_save'));
28var_dump(function_exists('oci_lob_import'));
29var_dump(function_exists('oci_free_descriptor'));
30
31echo "Done\n";
32
33?>
34--EXPECT--
35Test 1
36bool(true)
37bool(true)
38bool(true)
39bool(true)
40bool(true)
41bool(true)
42bool(true)
43bool(true)
44bool(true)
45bool(true)
46bool(true)
47bool(true)
48bool(true)
49bool(true)
50bool(true)
51bool(true)
52bool(true)
53bool(true)
54bool(true)
55bool(true)
56Done
57