Learning PHP and MySQL
Friday, August 18, 2006
Example 11-03 Displaying the same number in different formats
<?php
$value=42; printf("%d<br>",$value);
printf("%b<br>",$value);
printf("%c<br>",$value);
printf("%f<br>",$value);
printf("%o<br>",$value);
printf("%s<br>",$value);
printf("%x<br>",$value);
printf("%X<br>",$value);
?>
The last column of Table 11-1 was generated with the code in Example 11-3.
Example 11-3 gives us this column:
42
101010
*
42.000000
52
42
2a
2A
Posted by krautgrrl on 08/18 at 12:28 PM
Chapter 11 Code • (3) Comments • (0) Trackbacks • Permalink
Chapter 11 Code • (3) Comments • (0) Trackbacks • Permalink
Statistics
This page has been viewed 407292 times
Page rendered in 0.1368 seconds
Total Entries: 224
Total Comments: 16
Total Trackbacks: 307338
Most Recent Entry: 09/27/2006 12:39 pm
Most Recent Comment on: 10/26/2007 10:00 am
Total Members: 2
Total Logged in members: 0
Total guests: 10
Total anonymous users: 0
Most Recent Visitor on: 05/19/2012 05:46 am
The most visitors ever was 1103 on 11/20/2007 12:50 pm
