Answers for "php preg_replace whitespace"

PHP
0

php preg_replace whitespace

$id = "aa aa";
echo $id;
preg_replace('/\s+/', '_', $id);
echo $id;
Posted by: Guest on March-19-2021

Browse Popular Code Answers by Language