MO::export_headers()
Description Description
Return Return
(string)
Source Source
File: wp-includes/pomo/mo.php
function export_headers() {
$exported = '';
foreach ( $this->headers as $header => $value ) {
$exported .= "$header: $value\n";
}
return $exported;
}
Expand full source code Collapse full source code View on Trac