首页  >  问答  >  正文

PHP 解析错误:语法错误,意外'

当我从 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粉183077097P粉183077097237 天前327

全部回复(1)我来回复

  • P粉986937457

    P粉9869374572024-03-20 12:48:54

    您必须指定

    ${$args[1]}

    ${$args}[1]

    https://www.php.net/manual/en /语言.variables.variable.php

    回复
    0
  • 取消回复