Function __global->iptcparse

Definitions

sources_custom/phpstub.php

  • Parse a binary IPTC block into single tags.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$iptcblock string No No required parameter N/A N/A A binary IPTC block

Returns

  • 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.
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Parse a binary IPTC block into single tags.
 *
 * @param  string $iptcblock A binary IPTC block
 * @return array 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.
 */

function iptcparse(string $iptcblock) : array