MO::export_headers
Method of the class: MO{}
No Hooks.
Returns
String.
Usage
$MO = new MO(); $MO->export_headers();
MO::export_headers() MO::export headers code WP 7.0
public function export_headers() {
$exported = '';
foreach ( $this->headers as $header => $value ) {
$exported .= "$header: $value\n";
}
return $exported;
}