Home  >  Article  >  Backend Development  >  Classic method in PHP to determine whether a multi-dimensional array is empty_PHP tutorial

Classic method in PHP to determine whether a multi-dimensional array is empty_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:24:33737browse

Copy code The code is as follows:

//Determine whether an array is empty
/**
array(
); 空
array(
array(
),
array(
),
array(
)
); 空
array(
array(
),
array(
array(
),
array(
1=>1
)
),
array(
)
); 非 空
*/
function is_array_null($value)
{
if (empty($value))
{
return $value;
}
else
{
return is_array ($value) ? array_map('array_null', $value) : addslashes($value);
}
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324327.htmlTechArticleCopy code The code is as follows: //Judge whether an array is empty/** array( ); empty array( array ( ), array( ), array( ) ); empty array( array( ), array( array( ), array( 1=1 ) ), array( )...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn