Place your output code inside the HTML list items for
each question comment.
Nonoutput PHP logic & values can be placed underneath
the questions near the top of the file.
Do not change any of the other code in this file.
: create a class named Pizza that has two
properties: size and type.
Create the class just below this problem.
This problem has no output.
: Add setsize and settype methods to the Pizza class
above. This problem has no output.
: Add getsize and gettype methods to the Pizza class
above. This problem has no output.
: Create a $pizza object from the Pizza class.
Create the $pizza object just below this problem.
This problem has no output.
: Set the $pizza size to "medium".
You can do this just below this problem.
This problem has no output.
: Set the $pizza type to "Pepperoni".
You can do this just below this problem.
This problem has no output.
: Call the getsize method and output the
returned value in appropriate HTML list item below.
: Call the gettype method and output the
returned value in appropriate HTML list item below.
: Add a method to the Pizza class above named serve.
The serve method should output:
"Here's your type pizza!"
Replace type with the value of the type
property.
Call the serve method and output the
returned value in appropriate HTML list item below.
: Add a private property named
slices to the Pizza class above.
Next, add a method named getslices
to the Pizza class.
The method should return the number
of slices.
A small pizza has slices.
A medium pizza has slices.
A large pizza has slices.
Set the value of the private slices
property when the size is set.
Call the getslices method and
output the returned value in
appropriate HTML list item below.
: Add a method named description
to the Pizza class above.
The method should return:
My pizza is a sizetype and
has slices slices!"
Replace slices with the number of slices.
Replace size and type with their
appropriate values.
Create a $myPizza object.
Set the size to "large".
Set the type to "Supreme".
Call the description method for $myPizza
and output the returned value in
appropriate HTML list item below.