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

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

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,709 questions

55,473 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 237 views
237 views asked Jul 8, 2018 by avibootz
1 answer 141 views
1 answer 219 views
1 answer 232 views
232 views asked Jun 28, 2015 by avibootz
3 answers 315 views
1 answer 446 views
1 answer 233 views
...