xdiff_file_bpatch() 函数可以用二进制差异修补文件。
用法
bool xdiff_file_bpatch( string $file , string $patch , string $dest )
xdiff_file_bpatch() 函数可以用二进制补丁修补文件并将结果存储在文件 dest 中。此函数可以接受通过 xdiff_file_bdiff() 和 xdiff_file_rabdiff() 函数或其对应的字符串创建的补丁。
xdiff_file_bpatch() 函数可以在成功时返回 true 或在失败时返回 false。
示例
<?php
$old_version = "archive-1.0.tgz";
$patch = "archive.bpatch";
$result = xdiff_file_bpatch($old_version, $patch, "archive-1.1.tgz");
if($result) {
echo "File patched";
} else {
echo "File couldn't be patched";
}
?>
相关用法
- PHP xdiff_file_bdiff()用法及代码示例
- PHP xdiff_file_diff_binary()用法及代码示例
- PHP xdiff_file_rabdiff()用法及代码示例
- PHP xdiff_file_patch_binary()用法及代码示例
- PHP xdiff_file_diff()用法及代码示例
- PHP xdiff_file_patch()用法及代码示例
- PHP xdiff_string_rabdiff()用法及代码示例
- PHP xdiff_string_diff()用法及代码示例
- PHP xdiff_string_patch()用法及代码示例
- PHP xmlwriter_end_dtd_attlist()用法及代码示例
- PHP xmlwriter_end_dtd_element()用法及代码示例
- PHP xml_get_current_column_number()用法及代码示例
- PHP xmlwriter_write_dtd()用法及代码示例
- PHP xmlwriter_full_end_element()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - xdiff file_bpatch() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。