PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
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:


See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site