Answers for "number convert to string in php page"

PHP
2

php int to string

$number = 11;
// This
echo strval($number);
// Or This
echo (String) $number;
// Output
// "11"
// "11"
Posted by: Guest on October-29-2020

Code answers related to "number convert to string in php page"

Browse Popular Code Answers by Language