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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

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

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 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 189 views
189 views asked Jul 8, 2018 by avibootz
1 answer 103 views
1 answer 161 views
1 answer 185 views
185 views asked Jun 28, 2015 by avibootz
3 answers 241 views
1 answer 389 views
1 answer 143 views
...