Jump to content

Interface not found


drogo

Recommended Posts

Hi

 

Could someone give me some advice please.

 

I'm playing around with interfaces and OOP PHP and I've set up an interface class and a class which implements it however when I run the script form the browser on my local server I get the following error:

 

"Fatal error: Interface 'Chargeable' not found in C:\wamp\www\oop\class_ShopProduct.php on line 4"

 

Here are the two classes:

 

interface Chargeable

{

public function getPrice();

}

 

class ShopProduct implements Chargeable

{

public function getPrice()

{

return 23;

}

}

 

and the client code:

 

include_once('./class_ShopProduct.php');

$np = new ShopProduct;

echo $price = $np->getPrice();

 

I'm running Windows 7 with WAMP server 2.0 (PHP 5.3.0 & Apache 2.2.11)

 

Any help would be appreciated as I can't work out how it's not working when it seems like it should.

 

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.