PHPTS:一键免费搭建 Nginx + PHP + MySQL 运行环境

iptcparse

(PHP 4, PHP 5, PHP 7)

iptcparse 将二进制 IPTC 块解析为单个标记

说明

iptcparse ( string $iptcblock ) : array

本函数将一个二进制的 » IPTC 块解析为单个的标记。

参数

iptcblock

二进制的 IPTC 块。

返回值

返回一个数组,用 tagmarker 作为索引,以其值为值。如果出错或未发现 IPTC 数据则返回 FALSE

范例

Example #1 iptcparse() used together with getimagesize()

<?php
$size 
getimagesize('./test.jpg'$info);
if(isset(
$info['APP13']))
{
    
$iptc iptcparse($info['APP13']);
    
var_dump($iptc);
}
?>

注释

Note:

此函数不需要 GD 图象库。