Answers for "php convert ton string"

PHP
5

php to string

$number = 10;
// To convert this number to a string:
$numberString = (string)$number;
Posted by: Guest on October-30-2020

Browse Popular Code Answers by Language