du521521521 2016-10-26 19:19
浏览 31
已采纳

如何计算数组值的重现次数

I want to count the recurrence of a true or false and output which has the most. Is there a predefined function to do this in PHP? So far I have done it like this (isHappy() method):

class Girl {
    private $issues = [];
    public function addIssue($details) {
        this->issues[] = [$details, false];
        return;
    }
    public function isHappy() {
        $true = [];
        $false = [];
        foreach($this->issues as $issue) {
            if($issue[1]) { $true[] = true; } else { $false[] = false; }
        }
        // what if its == to one another? do we return happy or sad?
        return count($true) < count($false) ? false : true;
    }
    public function resolveIssue() {
        for($i = 0; $i <= count($this->issues); $i++) {
            if(!$this->issues[$i][1]) {
                 $this->issues[$i][1] = true;
                 break;
            }
        }
        return;
    }
}

So when I run it, I can get the average of if she is happy or not:

$her = new Girl();

$her->addIssue('Deleted our messages');
$her->addIssue('Over reacted');
$her->addIssue('Told her family to pretty much **** off');

echo $her->isHappy() ? 'it is all ok:)' : 'she hates u, hang urself.';

P.S: It should probably return false every time cos you can't win.

  • 写回答

2条回答 默认 最新

  • douan9541 2016-10-26 19:25
    关注

    You want array_count_values:

    function isHappy(array $issues) {
        $happiness = array_count_values(array_map('intval', $issues));
        return $happiness[1] > $happiness[0];
    }
    print_r(
        isHappy([ true, false, true, true, false ])
    );
    

    See it live on 3v4l.org.

    Note that array_count_values only works on string and int, so I'm mapping the given boolean to int for processing.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程