MO::export_headers

Advertisement

Syntax Syntax

MO::export_headers()

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;
		}

Advertisement

Advertisement

Leave a Reply