承接 phinor/finediff 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

phinor/finediff

最新稳定版本:0.1.1

Composer 安装命令:

composer require phinor/finediff

包简介

PHP implementation of a Fine granularity Diff engine

README 文档

README

Originally written by Raymond Hill (https://github.com/gorhill/PHP-FineDiff)

Build Status Latest Stable Version License

Installation

composer require d4h/finediff

Usage

Render HTML

Render the difference between two strings as HTML:

$diff = new FineDiff\Diff(); echo $diff->render('string one', 'string two');

This would then output:

string <ins>tw</ins>o<del>ne</del>

You could change the granularity to CogPowered\FineDiff\Granularity\Word

$diff = new FineDiff\Diff(new FineDiff\Granularity\Word()); // Or via the setter method: $diff->setGranularity(new FineDiff\Granularity\Word());

so the output is:

string <del>one</del><ins>two</ins>

You do this by passing it into the Diff constructor:

Grab opcode instructions

Opcode instructions are what tell FineDiff how to change one string into another.

$diff = new FineDiff\Diff(); echo $diff->getOpcodes('string one', 'string two');

This would then output:

c7d3i3:two

Render text using the opcodes:

$renderer = new FineDiff\Render\Text(); echo $renderer->process('string one', 'c7d3i3:two');

Would output:

string two

Same with HTML:

$renderer = new FineDiff\Render\Html(); echo $renderer->process('string one', 'c7d3i3:two');

Credits

Sponsored by D4H.

统计信息

  • 总下载量: 2.96k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固