Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

How to create a simple class with member variables and member functions in PHP

1 Answer

0 votes
class CBooks {
    var $name;
    var $price;
    function setPrice($pr) {
        $this->price = $pr;
    }
    function getPrice() {
        echo $this->price . "<br />";
    }
    function setName($nm) {
        $this->title = $nm;
    }
    function getName() {
        echo $this->title . "<br />";
    }
}

$obj = new CBooks();

$obj->setName("PHP Programming");
$obj->setPrice(35);
$obj->getName();
$obj->getPrice();


/*
run:

PHP Programming 
35

*/

 



answered Jul 8, 2018 by avibootz

Related questions

1 answer 256 views
256 views asked Jul 8, 2018 by avibootz
1 answer 159 views
1 answer 238 views
1 answer 260 views
260 views asked Jun 28, 2015 by avibootz
3 answers 346 views
1 answer 470 views
1 answer 264 views
...