UpYun::getWritedFileInfo PHP Method

getWritedFileInfo() public method

Deprecation: 获取上传文件后的信息(仅图片空间有返回数据)
public getWritedFileInfo ( $key )
$key 信息字段名(x-upyun-width、x-upyun-height、x-upyun-frames、x-upyun-file-type) return value or NULL
    public function getWritedFileInfo($key)
    {
        /*{{{*/
        if (!isset($this->_file_infos)) {
            return NULL;
        }
        return $this->_file_infos[$key];
    }