如果多维数组的一列的所有值都是_numeric,则最快返回TRUE



有没有更快的方法来检查一个数字(而不是null)是否存在php中多维数组的列(例如,number9)?

尝试:

下面的if statement似乎工作正常。

$arr=Array(
[0] => Array
(
[date] => 2019-01-16
[number1] => 20.4
[number2] => 20.54
[number3] => 19.71
[number4] => 19.73
[number5] => 70849266
[number6] => 70849266
[number7] => -0.65
[number8] => -3.189
[number9] => 20.0902
[string1] => Jan 16
[number10] => 0.047796070100903
)
.
.
.
[21] => Array
(
[date] => 2019-01-17
[number1 => 19.49
[number2] => 20.51
[number3] => 19.02
[number4] => 20.25
[number5] => 85018421
[number6] => 85018421
[number7] => 0.52
[number8] => 2.636
[number9] => 19.7988
[string1] => Jan 17
[number10] => 0.075411577270313
)
);

function isNumeric($var){
if (is_numeric($var)){
return true;
} else {
return false;
}
}

if((array_walk(array_column($arr, "number8"), 'isNumeric'))!=1)

以下是我的想法
首先是只过滤数组中的数值,并与原始值进行比较:

function with_array_filter($arr) {
return $arr == array_filter($arr, 'is_numeric');
}

第二个例子使用转换为浮点值,然后返回字符串,请记住,这对很大的数字来说并不准确,但似乎是最快的(如果你关心的话):

function is_numeric_array_with_cast($arr) {
foreach ($arr as $b) {
if ($b != (string)(float)$b) {
return false;
}
}
return true;
}

然而,最简单的解决方案可能是只foreach函数内的数组并提前返回:

function is_numeric_array_with_func($arr) {
foreach ($arr as $b) {
if (!is_numeric($b)) {
return false;
}
}
return true;
}

在PHP 7.2上以超过100000次迭代的20个元素阵列为基准:

$falseArray = [
'1',
2.5,
-10,
32,
11.0,
2.5,
100101221,
345,
-10,
'-10',
'+10',
'10',
12,
PHP_INT_MAX,
PHP_INT_MAX + 1.4e5,
'-10',
null,
'a',
'5',
5
];
Matt Fryer
Time: 4.8473789691925
is_numeric_array_with_func
Time:  4.0416791439056
is_numeric_array_with_cast
Time:  3.2953300476074
with_array_filter
Time:  3.99729180336

正如我在评论中所说:

下面的if语句似乎工作正常

然而,考虑到你提出的代码,我对此表示怀疑:让我们看看它。

function isNumeric($var){ ... }
if(array_walk(array_column($arr, "number8"), 'isNumberic'))!=1

第一个也是最明显的是这两个

  • isNumbericvsisNumeric,这是一个致命的未定义函数错误(拼写/打字错误)
  • )!=1那么这超出了实际情况,或者换句话说if(...){ !=1 }

让我们假设这些只是问题中的拼写错误。即使您的代码没有我上面提到的2个"缺陷",您仍然会有这个问题,array_walk是通过引用工作的,并且只是返回true(始终)。传递引用更新"原始"变量,而不返回其副本(在array_walk的情况下)

http://php.net/manual/en/function.array-walk.php

返回值返回TRUE。

这当然会让你的病情无论如何都过去。因此,您应该始终测试条件的通过和失败(就像我在其中放置一些"罐装"的坏数据所做的那样)。通过这种方式,我可以100%准确地知道我的代码是如何运行的。

其他人发布了如何纠正这一点,但没有发布你做错了什么。但为了完整起见,我无论如何都会发布一个答案。

$arr = array (
0 => 
array (
'date' => '2019-01-16',
'number1' => 20.4, 
'number2' => 20.54,
'number3' => 19.71,
'number4' => 19.73,
'number5' => 70849266,
'number6' => 70849266,
'number7' => -0.65,
'number8' => -3.189,
'number9' => 20.0902,
'string1' => 'Jan16',
'number10' => 0.047796070100903
),
array (
'date' => '2019-01-16',
'number1' => 20.4, 
'number2' => 20.54,
'number3' => 19.71,
'number4' => 19.73,
'number5' => 70849266,
'number6' => 70849266,
'number7' => -0.65,
'number8' => 'foo',#intentially not number
'number9' => 20.0902,
'string1' => 'Jan16',
'number10' => 0.047796070100903
),
);
$col = array_column($arr, "number8");
$col1 = array_filter($col, 'is_numeric');
if($col != $col1){
echo "not the samen";
}

输出:

not the same

沙盒

我应该提到的是,没有"必要"计算这些,因为PHP可以比较复杂的对象是否相等。当我们在(可能)删除一些元素后将同一个"根"数组(本例中为$col)与自身进行比较时,如果没有删除任何元素,则两个数组不仅长度相同,而且"相同"。

此外,如果你想在一行中(在条件内)完成,你可以这样做:

if( ($col = array_column($arr, "number8")) && $col != array_filter($col, 'is_numeric')){
echo "not the samen";
}

阅读起来有点困难,请注意$col = array_column作业。

使用foreach循环:

$bool = true;
foreach ($arr as $row)
{
if (!is_numeric($row['number8']))
{
$bool = false;
break;
}
}

感谢大家的精彩回答!

在我的电脑上,我尝试了PHP 5.5.38中的四个函数,迭代次数约为5000次,总次数为:

"is_numeric_array_with_cast total time is 0.44153618812561"
"with_array_filter total time is 0.21628260612488"
"is_numeric_array_with_func total time is 0.14269280433655"
"is_numeric_matt_fryer total time is 0.155033826828"

$t1=$t2=$t3=$t4=0;
foreach($arrs as $k=>$arr){
$s1=microtime(true);
is_numeric_array_with_cast(array_column($arr, "number8"));
$e1=microtime(true)-$s1;
$t1=$t1+$e1;
$s2=microtime(true);
with_array_filter(array_column($arr, "number8"));
$e2=microtime(true)-$s2;
$t2=$t2+$e2;

$s3=microtime(true);
is_numeric_array_with_func(array_column($arr, "number8"));
$e3=microtime(true)-$s3;
$t3=$t3+$e3;
$s4=microtime(true);
is_numeric_matt_fryer(array_column($arr, "number8"),"number8");
$e4=microtime(true)-$s4;
$t4=$t4+$e4;
}



function is_numeric_array_with_cast($arr) {
foreach ($arr as $b) {
if ($b != (string)(float)$b) {
return false;
}
}
return true;
}

function with_array_filter($arr) {
return $arr == array_filter($arr, 'is_numeric');
}

function is_numeric_array_with_func($arr) {
foreach ($arr as $b) {
if (!is_numeric($b)) {
return false;
}
}
return true;
}
function is_numeric_matt_fryer($arr,$str){
$bool = true;
foreach ($arr as $row)
{
if (!is_numeric($row[$str]))
{
$bool = false;
}
}
return $bool;
}

相关内容

  • 没有找到相关文章

最新更新