GD and Image 函数
PHP Manual

iptcparse

(PHP 4, PHP 5)

iptcparse 将二进制 IPTC » http://www.iptc.org/ 块解析为单个标记

说明

array iptcparse ( string $iptcblock )

本函数将一个二进制的 IPTC 块解析为单个的标记。返回一个数组,用 tagmarker 作为索引,以其值为值。如果出错或未发现 IPTC 数据则返回 FALSE。例子见 getimagesize()

参数

iptcblock

A binary IPTC block.

返回值

Returns an array using the tagmarker as an index and the value as the value. It returns FALSE on error or if no IPTC data was found.

范例

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 图象库.


GD and Image 函数
PHP Manual