gpt4 book ai didi

php - 使用 PHP 编写一个字谜函数?

转载 作者:行者123 更新时间:2023-12-02 05:26:50 25 4
gpt4 key购买 nike

用PHP写一个anagram函数?它应该处理不同的短语并返回 bool 结果。

用法:

$pharse1 = 'ball';
$pharse2 = 'lbal';
if(is_anagram($pharse1,$pharse2)){
echo $pharse1 .' & '. $pharse2 . ' are anagram';
}else{
echo $pharse1 .' & '. $pharse2 . ' not anagram';
}

最佳答案

还有更简单的方法

function is_anagram($a, $b) {
return(count_chars($a, 1) == count_chars($b, 1));
}

例子:

$a = 'argentino';
$b = 'ignorante';
echo is_anagram($a,$b); // output: 1

$a = 'batman';
$b = 'barman';
echo is_anagram($a,$b); // output (empty):

关于php - 使用 PHP 编写一个字谜函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21691810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com