xdiff_string_merge3

(PECL xdiff >= 0.2.0)

xdiff_string_merge3将 3 个字符串合并为一个

描述

xdiff_string_merge3(
    string $old_data,
    string $new_data1,
    string $new_data2,
    string &$error = ?
): mixed

将三个字符串合并为一个并返回结果。 old_data 是数据的原始版本,而 new_data1new_data2 是原始数据的修改版本。 可选的 error 用于传递合并过程中任何被拒绝的部分。

参数

old_data

包含数据的第一个字符串。 它充当 "旧" 数据。

new_data1

包含数据的第二个字符串。 它充当 old_data 的修改版本。

new_data2

包含数据的第三个字符串。 它充当 old_data 的修改版本。

error

如果提供,则拒绝的部分将存储在此变量中。

返回值

返回合并后的字符串,如果发生内部错误,则返回 **false**,如果合并后的字符串为空,则返回 **true**。

参见

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top