What is difference between 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:42 UTC
Read the original article Hit count: 243

Filed under:
|
|
|
|

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

Related posts about php

Related posts about source-code