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
psStrToAry()
Returns an array from a delimited string


Description:

Perfect when you want an array of items, can be passed as string
Ignores empty items.
Note: if you pass an array, it will return said array



Usage:

$str = psStrToAry($string,$delimiter);



Example:


$ary = psStrToAry("Red , ,Blue, "); // returns array("Red","Blue")





Code:

function psStrToAry($str, $d=",")
{
if (is_array($str) == true) { return $str; }
$res = array();
if ( substr_count($str,$d) < 1 )
{
$r = trim($str);
if ($r != "") { $res[] = $r; }
}
else
{
$ary = explode($d,$str);
foreach ($ary as $item)
{
if (trim($item) != "") { $res[] = trim($item); }
}
}
return $res;
}


Changlelog:


See Also

And a shot out to:

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