Answers for "remove 0 on string php"

PHP
2

php remove numbers from string

$words = preg_replace('/[0-9]+/', '', $words);
Posted by: Guest on September-25-2020
-1

remove 20 from string in php

//Replace space with %20 for url to understand
$new = str_replace(' ', '%20', $your_string);

//Alternate for URL use, use this
urlencode ( string $str )
Posted by: Guest on July-23-2020

Browse Popular Code Answers by Language