psIsAryEmpty() Returns true if an array is empty
Description:
This checks each element of the array to see if it contains nothing == ""
Usage:
$str = psIsAryEmpty($string,$delimiter);
Example:
$aryTest = array(); if ( psIsAryEmpty($aryTest) == false ) { // save array }
Code:
function psIsAryEmpty($ary) { $res = true; foreach ($ary as $key=>$val) { if ($val != "") { $res = false; } } return $res; }
Changlelog:
|
|