PHP function of the day: printf()
For day 16 of 21 in the “PHP Function of the day” series, I’m going to look at printf(). This one is pretty interesting. It allows you to define a format and a series of arguments. The “%[something]” in the format string is used to define both where the argument’s value is output and the expected format. …
Continue reading "PHP function of the day: printf()"