Difference between dot and comma in PHP.
Posted
by user318466
on Stack Overflow
See other posts from Stack Overflow
or by user318466
Published on 2010-04-19T07:32:59Z
Indexed on
2010/04/19
7:43 UTC
Read the original article
Hit count: 135
php
What is the difference between dot and comma when used in echo/print.
echo '1','2';
echo '1'.'2';
produce the same output.
© Stack Overflow or respective owner