当我从 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])); } }
P粉9869374572024-03-20 12:48:54
您必须指定
${$args[1]}
或
${$args}[1]
https://www.php.net/manual/en /语言.variables.variable.php