what is the main difference between in php
$a=10;
$a='10';
$a="10";
but all output is given 10 then what is the difference between these values?
$a=10;
$a='10';
$a="10";
but all output is given 10 then what is the difference between these values?
Comment