How to find the longest common substring of two strings in PHP?

php中世界最好的语言
Release: 2023-03-18 07:44:01
Original
1350 people have browsed it

This article mainly gives you a method to synthesize the longest common string from two strings using PHP. Involving php string and array traversal, operation, judgment and other related operation skills.

The code is as follows:

<?php
$a = &#39;abceee12345309878&#39;;
$b = &#39;abceeew2345i09878fsfsfsfabceeewsfsdfsfsabceeew&#39;;
$c = array();
$lenht1 = strlen($a);
$lenth2 = strlen($b);
$startTime = microtime(true);
for ($i=0;$i<$lenht1;$i++) {
  for ($j=0;$j<$lenth2;$j++) {
    $n = ($i-1>=0 && $j-1>=0)?$c[$i-1][$j-1]:0;
    $n = ($a[$i] == $b[$j]) ? $n+1:0;
    $c[$i][$j] = $n;
  }
}
foreach ($c as $key=>$val) {
  $max = max($val);
  foreach ($val as $key1 =>$val1) {
    if ($val1 == $max && $max>0) {
      $cdStr[$max] = substr($b,$key1-$max+1,$max);
    }
  }
}
ksort($cdStr);
$endTime = microtime(true);
echo "Totle time is " . ($endTime - $startTime) . " s"."<br/>";
print_r(end($cdStr));
exit;
?>
Copy after login

Running results:

Totle time is 0.0012800693512 s
abceee
Copy after login

I believe you have mastered the method after reading these cases. For more exciting information, please pay attention to php Chinese Other related articles online!

Related reading:

How to generate Cartesian product by PHP custom function

How does PHP solve the problem of large website traffic and High concurrency

Detailed explanation of javascript data types and git usage code

The above is the detailed content of How to find the longest common substring of two strings in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template