iptcparse
PHP Manual
PHP Manual»Функції GD та Image»iptcparse

iptcparse

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

iptcparseParse a binary IPTC block into single tags

Опис

function iptcparse(string $iptc_block): array|false

Parses an » IPTC block into its single tags.

Параметри

iptc_block

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.

Приклади

Приклад #1 iptcparse() used together with getimagesize()

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

Примітки

Зауваження:

Ця функція не потребує бібліотеки зображень GD.

To Top