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
psStrDefault()
Returns a string or a defualt string


Description:

Used when you need to have a string equal to another, or default if empty.



Usage:

$str = psStrDefault($string,"def_string");



Example:


$sView = psStrDefault($_GET['view'], "list");

will return the url parameter, or "list" if not set




Code:

function psStrDefault($str,$strDef)
{
$res = $str;
if ($res == "") { $res = $strDef; }
return $res;
}


Changlelog:


See Also

And a shot out to:

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