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
psStrClean()
Returns a clean string, no symbols


Description:

This is usefull for cleaning a string, no chr's other than space are allowed

note: this is a preg_replace wrapper




Usage:

$str = psStrClean($mixedstring);



Example:


$str = psStrClean("required!^"); // returns "required"





Code:

function psStrClean($str)
{
$str = preg_replace('/[^a-zA-Z0-9\s]/', '', $str);
return $str;
}


Changlelog:


And a shot out to:

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