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