MO::export_headers()


Description Description


Return Return

(string)


Top ↑

Source Source

File: wp-includes/pomo/mo.php

		function export_headers() {
			$exported = '';
			foreach ( $this->headers as $header => $value ) {
				$exported .= "$header: $value\n";
			}
			return $exported;
		}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.