|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-03-12 12:26 UTC] j dot henge-ernst at interexa dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Description: ------------ the odbc_close function always returns null instead of a boolean value as stated in the documentation for odbc_close. In the souce of php_odbc.c there is no RETURN_TRUE or RETURN_FALSE. So is either the docmentation outdated or is in the sourcecode something missing? Reproduce code: --------------- $con = odbc_connect("autot32", "db2inst1", "interexa"); $ret = odbc_close($con); var_dump($ret); Expected result: ---------------- bool(true) Actual result: -------------- NULL