Here are some examples of these styles, and an
explanation of their meaning.
Introduction
[ 3 ]
There are three styles for code. Code words in text are shown as follows: "In some
cases you may need to investigate which classes are in the current scope. You can do
it easily with get_declared_classes() function." ."
A block of code will be set as follows:
class ParentClass
{ }
class ChildClass extends ParentClass
{ }
$cc = new ChildClass();
if (is_a($cc,"ChildClass")) echo "It??™s a ChildClass Type Object";
echo "\n";
if (is_a($cc,"ParentClass")) echo "It??™s also a ParentClass Type
Object";
?>
New terms and important words are introduced in a bold-type font. Words that you
see on the screen, in menus or dialog boxes for example, appear in our text like this:
" If you place the server in your web server (here localhost) document, root in a
folder named proxy and then access the client, you will get the following output:
March, 28 2007 16:13:20".
Important notes appear in a box like this.
Tips and tricks appear like this.
Reader Feedback
Feedback from our readers is always welcome. Let us know what you think about
this book, what you liked or may have disliked.
Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25