Answers for "typecasting to string in php"

PHP
5

php to string

$number = 10;
// To convert this number to a string:
$numberString = (string)$number;
Posted by: Guest on October-30-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

Code answers related to "typecasting to string in php"

Browse Popular Code Answers by Language