Answers for "what is scalar data type in php"

PHP
0

what is scalar data type in php

$x = 3; //integer
$y=3.4;	//float
$z="kinjal";	//string
$s=true; //boolean
//scalar data holds only single value.
Posted by: Guest on September-03-2021

Code answers related to "what is scalar data type in php"

Browse Popular Code Answers by Language