gpt4 book ai didi

php - strcmp 等效于 PHP 中的整数 (strcmp)

转载 作者:IT老高 更新时间:2023-10-28 12:03:09 25 4
gpt4 key购买 nike

所以我们在 PHP 中得到了这个函数

strcmp(string $1,string $2) // returns -1,0, or 1;

然而,我们没有 intcmp();所以我创建了一个:

function intcmp($a,$b) {
if((int)$a == (int)$b)return 0;
if((int)$a > (int)$b)return 1;
if((int)$a < (int)$b)return -1;
}

这只是感觉很脏。大家觉得呢?

这是通过传入的排序值对 Javascript 进行排序的类的一部分。

class JS
{
// array('order'=>0,'path'=>'/js/somefile.js','attr'=>array());
public $javascripts = array();
...
public function __toString()
{
uasort($this->javascripts,array($this,'sortScripts'));
return $this->render();
}
private function sortScripts($a,$b)
{
if((int)$a['order'] == (int)$b['order']) return 0;
if((int)$a['order'] > (int)$b['order']) return 1;
if((int)$a['order'] < (int)$b['order']) return -1;
}
....
}

最佳答案

使用以下方式对数据进行排序:

function sortScripts($a, $b)
{
return $a['order'] - $b['order'];
}

如果您想要颠倒的顺序,请使用 $b-$a。

如果有问题的数字超出 PHP 的整数范围,return ($a < $b) ? -1 : (($a > $b) ? 1 : 0)更健壮。

关于php - strcmp 等效于 PHP 中的整数 (strcmp),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2852621/

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