Voting

: max(seven, two)?
(Example: nine)

The Note You're Voting On

remy dot damour at -please-no-spam-laposte dot net
16 years ago
With printf() and sprintf() functions, escape character is not backslash '\' but rather '%'.

Ie. to print '%' character you need to escape it with itself:
<?php
printf
('%%%s%%', 'koko'); #output: '%koko%'
?>

<< Back to user notes page

To Top