Appendix B. Answers to Exercises
Chapter 2
Exercise 1
- The opening PHP tag should be just
<?php
with no space between the<?
andphp
. - Because the string
I'm fine
contains a'
, it should be surrounded by double quotes ("I'm fine"
) or the'
should be escaped ('I\'m fine'
). - The closing PHP tag should be
?>
, not??>
. Or, if this code were the last thing in its file, the closing PHP tag could be omitted.
Exercise 2
$hamburger
=
4.95
;
$shake
=
1.95
;
$cola
=
0.85
;
$tip_rate
=
0.16
;
$tax_rate
=
0.075
;
$food
=
(
2
*
$hamburger
)
+
$shake
+
$cola
;
$tip
=
$food
*
$tip_rate
;
$tax
=
$food
*
$tax_rate
;
$total
=
$food
+
$tip
+
$tax
;
'The total cost of the meal is $'
.
$total
;
Exercise 3
$hamburger
=
4.95
;
$shake
=
1.95
;
$cola
=
0.85
;
$tip_rate
=
0.16
;
$tax_rate
=
0.075
;
$food
=
(
2
*
$hamburger
)
+
$shake
+
$cola
;
$tip
=
$food
*
$tip_rate
;
$tax
=
$food
*
$tax_rate
;
$total
=
$food
+
$tip
+
$tax
;
printf
(
"%d %-9s at
\$
%.2f each:
\$
%5.2f
\n
"
,
2
,
'Hamburger'
,
$hamburger
,
2
*
$hamburger
);
printf
(
"%d %-9s at
\$
%.2f each:
\$
%5.2f
\n
"
,
1
,
'Shake'
,
$shake
,
$hamburger
);
printf
(
"%d %-9s at
\$
%.2f each:
\$
%5.2f
\n
"
,
1
,
'Cola'
,
$cola
,
$cola
);
printf
(
"%25s:
\$
%5.2f
\n
"
,
'Food Total'
,
$food
);
printf
(
"%25s:
\$
%5.2f
\n
"
,
'Food and Tax Total'
,
$food
+
$tax
);
printf
(
"%25s:
\$
%5.2f
\n
"
,
'Food, Tax, and Tip Total'
,
$total
);
Exercise 4
$first_name
=
'Srinivasa'
;
$last_name
=
'Ramanujan'
;
$name
=
"
$first_name
$last_name
"
;
$name
;
strlen
(
$name
);
Exercise 5
$n
=
1
;
$p
=
2
;
"
$n
,
$p\n
"
;
$n
Get Learning PHP now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.