當我從 php 5.6 更改為 php 7.4 時,我收到此錯誤:
PHP 解析錯誤:語法錯誤,意外的“[”,期望“;”或 ./dbdrivers/odbc.php IN $$args[1]
中的 ','
function &db_fetch_row ($args=array()){ global $$args[1]; switch(count($args)) { case 2: return (odbc_fetch_into($args[0], $args[1])); default: return (odbc_fetch_array($args[0])); } }
您必須指定
#或
https://www.php.net/manual/en /語言.variables.variable.php
#