What is difference b/w Output functions in php ?
Posted
by Karandeep Singh
on Stack Overflow
See other posts from Stack Overflow
or by Karandeep Singh
Published on 2010-06-11T08:26:05Z
Indexed on
2010/06/11
8:32 UTC
Read the original article
Hit count: 264
What is the difference between these code snippets?
1)
$f = 12.044545;
printf("%f",$f);
vprintf("%f",$f);
2)
echo("echo");
print("print");
Thanks,
© Stack Overflow or respective owner