The stock php.ini file for php 7 declares in a comment:
"Note that ODBC support is built in, so no dll is needed for it."
However, a few lines down there is:
extension=php_odbc.dll
...and that file is included in the ext directory.
We support applications with different versions of php and I've noticed older versions don't include the extension in their respective .ini files, or the .dll in their ext directories, yet connecting to odbc works as stated in the .ini file comments.
In php 7, if I remove either the extension in the ini file or physically move/delete the .dll file and try running, I get:
Fatal error: Uncaught Error: Call to undefined function odbc_connect()
The question: does php 7 actually have odbc support "built in" as the ini file claims? If so, why is it behaving this way when older versions behave differently? If not, why does the ini file claim that it does, and where is the documentation to the contrary?
PHP Version: 7.1.1
OS: Windows 10 Enterprise 64-bit
Thanks!