Quantcast
Channel: Articles in IT and more » Php
Viewing all articles
Browse latest Browse all 3

PHP Tips & Tricks

$
0
0

-replace multiple white space with a space

$foo = preg_replace( '/\s+/', ' ', $foo );

 

-extract numbers from a string

$string = "The 1. Quick and 2. Brown fox said 3. (!@*(#!@*";
$new_string = ereg_replace("[^0-9]", "", $string);
echo $new_string; #123

Related posts:

  1. Web Revenge! Dirty tricks for Halloween

Viewing all articles
Browse latest Browse all 3

Latest Images

Trending Articles





Latest Images