Uses
| Uses | Description |
|---|---|
| wp-includes/pomo/mo.php: MO::export_to_file_handle() |
(string|false)
File: wp-includes/pomo/mo.php
function export() {
$tmp_fh = fopen( 'php://temp', 'r+' );
if ( ! $tmp_fh ) {
return false;
}
$this->export_to_file_handle( $tmp_fh );
rewind( $tmp_fh );
return stream_get_contents( $tmp_fh );
}
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/mo/export