printf() Extended Unicode Characters?
问题 $formatthis = 219; $printthis = 98; // %c - the argument is treated as an integer, and presented as the character with that ASCII value. $string = 'There are %c treated as integer %c'; echo printf($string, $formatthis, $printthis); I'm attempting to understand printf(). I don't quite understand the parameters. I can see that the first parameter seems to be the string that the formatting will be applied to. The second is the first variable to format, and the third seems to be the second