PHP 解析錯誤:語法錯誤,意外'
P粉183077097
P粉183077097 2024-03-19 17:13:55
0
1
314

當我從 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粉183077097
P粉183077097

全部回覆(1)
P粉986937457

您必須指定

${$args[1]}

#或

${$args}[1]

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

#
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!