1

当我搜索上传的临时文件时,我试图返回一个错误。

`

$getID3 = new getID3;
$file = $getID3->analyze($_FILES["file"]["tmp_name"]);
//print_r($file);

if (isset($file['error'])) {
    echo $file['error'];
} else {
    echo "
    <b>Duration:</b> " . $file['playtime_string'] . "<br/>
    <b>Dimensions:</b> " . $file['video']['resolution_x'] . "x" . $file['video']['resolution_y'] . "<br/>
    <b>Filesize:</b> " . $file['filesize'] . "bytes";
}

`

它存在于数组中,因为当我上传无效的文件类型时,它会返回这个数组。

Array
        (
            [GETID3_VERSION] =&gt; 1.9.12-201602240818
            [filesize] =&gt; 159924
            [filepath] =&gt; /tmp
            [filename] =&gt; phpQAJeuD
            [filenamepath] =&gt; /tmp/phpQAJeuD
            [encoding] =&gt; UTF-8
            [error] =&gt; Array
                (
                    [0] =&gt; unable to determine file format
                )

        )

怎么没有得到['error']

4

2 回答 2

2

因为$file['error']是一个数组。无法回显数组。

print_r()您可以使用该函数或通过循环来打印数组的内容。

例如:

$arr = array('one', 'two', 'three');
foreach($arr as $value){
    echo $value."\r\n";
}

有关如何处理它们的更多信息,请参阅数组的 php 文档:http: //php.net/manual/en/language.types.array.php

如果在任何情况下您都不确定变量的类型是什么,您可以使用函数来解决它gettype()。另请参阅文档以获取更多信息: http: //php.net/manual/en/function.gettype.php

于 2016-03-09T20:24:23.373 回答
1

['error']是一个数组。

你需要输出['error'][0]

于 2016-03-09T20:23:08.230 回答