MO::export()

最后更新于:2021-11-25 20:28:38

MO::export()

响应

(string|false)

源文件

文件: gc-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 );
		}