existence_aliases.phpt 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. --TEST--
  2. Test if function aliases still exist.
  3. --EXTENSIONS--
  4. oci8
  5. --FILE--
  6. <?php
  7. var_dump(function_exists('ocifreecursor'));
  8. var_dump(function_exists('ocibindbyname'));
  9. var_dump(function_exists('ocidefinebyname'));
  10. var_dump(function_exists('ocicolumnisnull'));
  11. var_dump(function_exists('ocicolumnname'));
  12. var_dump(function_exists('ocicolumnsize'));
  13. var_dump(function_exists('ocicolumnscale'));
  14. var_dump(function_exists('ocicolumnprecision'));
  15. var_dump(function_exists('ocicolumntype'));
  16. var_dump(function_exists('ocicolumntyperaw'));
  17. var_dump(function_exists('ociexecute'));
  18. var_dump(function_exists('ocicancel'));
  19. var_dump(function_exists('ocifetch'));
  20. var_dump(function_exists('ocifetchstatement'));
  21. var_dump(function_exists('ocifreestatement'));
  22. var_dump(function_exists('ocinumcols'));
  23. var_dump(function_exists('ociparse'));
  24. var_dump(function_exists('ocinewcursor'));
  25. var_dump(function_exists('ociresult'));
  26. var_dump(function_exists('ociserverversion'));
  27. var_dump(function_exists('ocistatementtype'));
  28. var_dump(function_exists('ocirowcount'));
  29. var_dump(function_exists('ocilogoff'));
  30. var_dump(function_exists('ocilogon'));
  31. var_dump(function_exists('ocinlogon'));
  32. var_dump(function_exists('ociplogon'));
  33. var_dump(function_exists('ocierror'));
  34. var_dump(function_exists('ocifreedesc'));
  35. var_dump(function_exists('ocisavelob'));
  36. var_dump(function_exists('ocisavelobfile'));
  37. var_dump(function_exists('ociwritelobtofile'));
  38. var_dump(function_exists('ociloadlob'));
  39. var_dump(function_exists('ocicommit'));
  40. var_dump(function_exists('ocirollback'));
  41. var_dump(function_exists('ocinewdescriptor'));
  42. var_dump(function_exists('ocisetprefetch'));
  43. var_dump(function_exists('ocipasswordchange'));
  44. var_dump(function_exists('ocifreecollection'));
  45. var_dump(function_exists('ocinewcollection'));
  46. var_dump(function_exists('ocicollappend'));
  47. var_dump(function_exists('ocicollgetelem'));
  48. var_dump(function_exists('ocicollassignelem'));
  49. var_dump(function_exists('ocicollsize'));
  50. var_dump(function_exists('ocicollmax'));
  51. var_dump(function_exists('ocicolltrim'));
  52. ?>
  53. --EXPECT--
  54. bool(true)
  55. bool(true)
  56. bool(true)
  57. bool(true)
  58. bool(true)
  59. bool(true)
  60. bool(true)
  61. bool(true)
  62. bool(true)
  63. bool(true)
  64. bool(true)
  65. bool(true)
  66. bool(true)
  67. bool(true)
  68. bool(true)
  69. bool(true)
  70. bool(true)
  71. bool(true)
  72. bool(true)
  73. bool(true)
  74. bool(true)
  75. bool(true)
  76. bool(true)
  77. bool(true)
  78. bool(true)
  79. bool(true)
  80. bool(true)
  81. bool(true)
  82. bool(true)
  83. bool(true)
  84. bool(true)
  85. bool(true)
  86. bool(true)
  87. bool(true)
  88. bool(true)
  89. bool(true)
  90. bool(true)
  91. bool(true)
  92. bool(true)
  93. bool(true)
  94. bool(true)
  95. bool(true)
  96. bool(true)
  97. bool(true)
  98. bool(true)