function _locale_import_parse_header
Parses a Gettext Portable Object file header
Parameters
$header: A string containing the complete header.
Return value
An associative array of key-value pairs.
Related topics
1 call to _locale_import_parse_header()
- _locale_import_one_string in includes/
locale.inc - Imports a string into the database
File
-
includes/
locale.inc, line 1218
Code
function _locale_import_parse_header($header) {
$header_parsed = array();
$lines = array_map('trim', explode("\n", $header));
foreach ($lines as $line) {
if ($line) {
list($tag, $contents) = explode(":", $line, 2);
$header_parsed[trim($tag)] = trim($contents);
}
}
return $header_parsed;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.