コード例 #1
0
ファイル: make_mask_differ.php プロジェクト: superman1982/ddd
function compare_views($old, $new)
{
    $diffs = array();
    $diffs["create"] = compare_create($old, $new);
    $diffs["drop"] = compare_drop($old, $new);
    return $diffs;
}
コード例 #2
0
ファイル: make_view_differ.php プロジェクト: superman1982/ddd
function compare_views($old, $new)
{
    $diffs = array();
    $diffs["create"] = compare_create($old, $new);
    $diffs["drop"] = compare_drop($old, $new);
    $diffs["insert"] = compare_insert($old, $new);
    $diffs["remove"] = compare_remove($old, $new);
    return $diffs;
}