Answers for "php format string add spaces"

PHP
1

php number format spaces

echo number_format($number, 2, ',', ' ');
Posted by: Guest on September-23-2021
0

php insert hyphen into spaces in string

$test = "jjfnj 948";
$test = str_replace(" ", "", $test);  // strip all spaces from string
echo substr($test, 0, 3)."-".substr($test, 3);  // isolate first three chars, add hyphen, and concat all characters after the first three
Posted by: Guest on October-17-2020

Browse Popular Code Answers by Language