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
psList()
Returns a list array from a string


Description:

This is very similar to explode, but trims each item for whitespaces



Usage:

$ary = psList($string,[$del]);
default delimiter is ,



Example:


$str = "10,20,30";
$ary = psList($str);

$str = "10|20|30";
$ary = psList($str,"|");






Code:

function psList($str,$d=",")
{
$ary = explode($d,$str);
foreach ($ary as $key=>$val)
{
$ary[$key] = trim($val);
}
return $ary;
}

Changlelog:


See Also

And a shot out to:

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