Mega Code Archive

 
Categories / Php / Functions
 

Int printf ( string format [, mixed argument [, mixed ]] ) is the standard C way to format text

<?     $animals = "lions, tigers, and bears";     printf("There were %s - oh my!", $animals); ?>