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
psStrAlphaOnly()
Returns alpha only from a string


Description:

This is usefull for stripping out numbers and other characters from a string

note: this is a preg_replace wrapper




Usage:

$str = psStrAlphaOnly($mixedstring);



Example:


$str = psStrAlphaOnly("add 5"); // returns "add"





Code:

function psStrAlphaOnly($str)
{
$str = preg_replace('/[^a-zA-Z]/', '', $str);
return $str;
}


Changlelog:


And a shot out to:

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