Jump to content

First attempt at an OOP script


keeps21

Recommended Posts

This is a script about books. details are title, author first name and last name, and price.

 

I've created a class 'book', and functions to get the title, names and price which all work individually.

 

However I've created a function to call the above 3 functions, but am getting an error: call to undefined function and can't figure out exactly why.

 

any help would be appreciated.

 

<?php

class book {

	public $_Title;
	public $_FirstName;
	public $_LastName;
	public $_Price;

	public function __construct($title, $firstname, $lastname, $price) 
	{
			$this->_Title = $title;
			$this->_FirstName = $firstname;
			$this->_LastName = $lastname;
			$this->_Price = $price;
	}

	public function getTitle() 
	{
			return $this->_Title;
	}

	public function getAuthor() 
	{
			return $this->_FirstName . ' ' . $this->_LastName;
	}

	public function getPrice()
	{
			return '£'.$this->_Price;
	}

	public function showBookDetails() 
	{
			getTitle();
			getAuthor();
			getPrice();
	}

}

$item1 = new book( "OOP and PHP", "Andrew", "Bell", 9.99 );
print $item1->getTitle();
print $item1->getAuthor();
print $item1->getPrice();
print $item1->showBookDetails();

$item2 = new book( "PHP Cookbook", "Joe", "Bloggs", 29.99 );
print $item2->getTitle();
print $item2->getAuthor();
print $item2->getPrice();
print $item2->showBookDetails();

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.