Last active
July 6, 2020 18:24
-
-
Save AboliOneStar/e8681a12195809f4e9fbc81772485178 to your computer and use it in GitHub Desktop.
با این سورس میتونید دو تا جمله رو با هم مقایسه کنید ببینید معنیشون یکی هست یا نه ساده هست ولی جالب
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// TG: t.me/Pgming | |
$r = false; | |
if(isset($_POST['sbm'])){ | |
$i1e = preg_split("/[\s,.-]+/", $_POST['i1']); | |
$i2e = preg_split("/[\s,.-]+/", $_POST['i2']); | |
$len = count($i1e); | |
$len1x = $len/2; | |
$match = 0; | |
foreach ($i1e as $f1) { | |
if(in_array($f1,$i2e)) { | |
$match = $match + 1; | |
} | |
} | |
$r = $match > $len1x ? true:false; | |
} | |
?> | |
<html> | |
<head> | |
<meta charset="utf8"> | |
<title>میو</title> | |
</head> | |
<body style="text-align: center"> | |
<?php if($r) { | |
echo '<h1 style="color:green">مشابه است :)</h1>'; | |
} else{ | |
echo '<h1 style="color:red">مشابه نیست :(</h1>'; | |
} ?> | |
<form action="" method="post"> | |
<input type="text" name="i1" placeholder="جمله اصلی رو بزن" /><br> | |
<input type="text" name="i2" placeholder="جمله مشابه رو بزن" /><br> | |
<input type="submit" name="sbm" value="مقایسه" /> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
یادم نمیاد گفته باشم این هوش مصنوعیه
گفتم خیلیا فک میکنن واسه چنین کاری نیاز به هوش مصنوعیه !!!