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
psStrNumOnly()
Returns numbers only from a string


Description:

This is usefull for stripping out other characters from a phone number.
Also usefull for removing spaces from a credit card number.

note: this is a preg_replace wrapper




Usage:

$str = psStrNumOnly($mixedstring);



Example:


$str = psStrNumOnly("(800) 555-5309"); // returns "8005555309"





Code:

function psStrNumOnly($str)
{
$str = preg_replace('/[^0-9]/', '', $str);
return $str;
}


Changlelog:


And a shot out to:

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