Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function clean($string) {
- $string = str_replace(' ', '_', $string);
- return preg_replace('/[^A-Za-z0-9\-]/', '', $string);
- }
- function removespace($string){
- $string = str_replace(' ','', $string);
- return $string;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement