gpt4 book ai didi

Php 数组搜索不起作用

转载 作者:行者123 更新时间:2023-12-02 17:52:17 24 4
gpt4 key购买 nike

您好,我真的需要帮助。

function isdAuthorTrue( $post_id ) { 


$coauthors = get_post_meta( $post_id, "coAuthors" );

print_r($coauthors);
// print_r output Array ( [0] => 78 )

$key = array_search( 78, $coauthors );
$key = 0;
if($key !== false) {

return true;

} else {

return false;
}
}

然后我正在尝试做,如果围绕它的声明不起作用。

$test = isdAuthorTrue( 102 );

echo $test;

if($test){

echo "yes";

}else{

echo "no";
}

我一直不知道我做错了什么???

最佳答案

您得到“否”是因为 array_search 返回键,在本例中为 0。 PHP 将其评估为 false。编辑:没有注意到严格的比较——不,它没有。

此外,您明确地将 $key 设置为 0...

关于Php 数组搜索不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6682410/

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