MO::export_to_file()
最后更新于:2021-11-25 20:29:27
MO::export_to_file( string$filename)参数
- $filename
-
(string) (Required)
响应
(bool)
源文件
文件: gc-includes/pomo/mo.php
function export_to_file( $filename ) {
$fh = fopen( $filename, 'wb' );
if ( ! $fh ) {
return false;
}
$res = $this->export_to_file_handle( $fh );
fclose( $fh );
return $res;
}