MO::export_headers()publicWP 1.0

Method of the class: MO{}

No Hooks.

Return

String.

Usage

$MO = new MO();
$MO->export_headers();

MO::export_headers() code WP 6.5.2

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