iptcparse

(PHP 4, PHP 5, PHP 7, PHP 8)

iptcparse 將二進(jìn)制 IPTC 塊解析為單個(gè)標(biāo)記

說明

iptcparse(string $iptcblock): array

本函數(shù)將一個(gè)二進(jìn)制的 ? IPTC 塊解析為單個(gè)的標(biāo)記。

參數(shù)

iptcblock

二進(jìn)制的 IPTC 塊。

返回值

返回一個(gè)數(shù)組,用 tagmarker 作為索引,以其值為值。如果出錯(cuò)或未發(fā)現(xiàn) IPTC 數(shù)據(jù)則返回 false。

范例

示例 #1 iptcparse() used together with getimagesize()

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

注釋

注意:

此函數(shù)不需要 GD 圖象庫。