<html> <head> <title>printf: %b</title> </head> <body> <?php $number = 543; printf("Binary: %b<br>", $number ); ?> </body> </html>