Answers for "typecast string php"

PHP
14

integer to string php

return strval($integer);
Posted by: Guest on April-06-2020
1

php convert to string

<?php
class StrValTest
{
    public function __toString()
    {
        return __CLASS__;
    }
}

// Prints 'StrValTest'
echo strval(new StrValTest);
?>
Posted by: Guest on April-02-2020
0

whats is typecasting in php

TYPECASTING IN PHP: The meaning of type casting is to use the value of a variable with different data type. In other word typecasting is a way to utilize one data type variable into the different data type. ... In PHP variables automatically decide the data type on the basis of the value assignment or context.
Posted by: Guest on August-22-2021

Browse Popular Code Answers by Language