The printf() function used for outputs a formatted string.
Syntax
printf(string format,arg1,arg2,...)
Example
$pincode = 110085;
$name = "ram";
printf("Your pincode are %u and name %s.",$pincode,$name);
Output
Your pincode are 110085 and name ram
Copyright ©2022 coderraj.com. All Rights Reserved.