1

我收到此错误:

解析错误:语法错误,意外的 T_FUNCTION

在这段代码中:

<?php
    $uniqueFtypes = $ftypes = $converter->GetConvertedFileTypes();
    array_walk(
        $uniqueFtypes, 
        function(&$ftype, $key) {
            $ftype = $ftype['fileExt'];
        }
    );
    $uniqueFtypes = array_values(array_unique($uniqueFtypes));
    foreach ($uniqueFtypes as $key => $uftype)
    {
        echo $uftype;
        echo ($uftype != end($uniqueFtypes)) ? (($key != count($uniqueFtypes)-2) ? ', ' : ', or ') : '';
    }
?>

在这一行:

array_walk(
    $uniqueFtypes, 
    function(&$ftype, $key) {
        $ftype = $ftype['fileExt'];
    }
);

PHP版本:5.2.17

它适用于本地主机,我使用的是最新的 UniServer。但是当我把它移到我的主机上时,它给出了那个错误。

有什么帮助吗?:)

编辑:这是其他人,我不确定它是否需要修复。

ini_set('max_execution_time',0);
ini_set('display_errors',0);

// Instantiate converter class
include 'VideoConverter.class.php';
$converter = new VideoConverter();

// On download of converted file
if (isset($_GET['output']))
{
    $converter->DownloadConvertedFile($_GET['output']);
}

第二

    $vidHosts = array_values($converter->GetVideoHosts());
    foreach ($vidHosts as $key => $host)
    {
        echo $host['name'];
        echo ($host != end($vidHosts)) ? (($key == count($vidHosts)-2) ? ((count($vidHosts) > 2) ? ', and ' : ' and ') : ', ') : '';
    }

这两个也需要修复吗?

4

1 回答 1

6

在 php 5.3 之前你不能使用闭包。您需要在 tofunction的第二个参数中array_walk更改它create_function。尝试:

array_walk($uniqueFtypes, create_function('&$ftype, $key;',
   '$ftype = $ftype["fileExt"];'));
于 2012-09-18T00:27:59.857 回答