Robert430404 / php-str-diff

Compute difference between two strings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP str_diff Function

Calculates the difference between two strings.

Usage:

<?php

include 'vendor/autoload.php';

$diff = str_diff(
    'I am inevitable !',
    'I am Iron Man !'
);

echo $diff['common_start']; // "I am"
echo $diff['common_end'];   // " !"
echo $diff['left'];         // "inevitable"
echo $diff['right'];        // "Iron Man"

About

Compute difference between two strings

License:MIT License


Languages

Language:PHP 100.0%