Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to implement a class named dragonball. This class must have an attribute named ballcount (which starts from 0) and a method ifoundaball. When ifoundaball is called, ballcount is increased by one. If the value of ballcount is equal to seven, then the message you can ask your wish is printed, and ballcount is reset to 0. How would you implement this class?

Answer Posted / testme

<?php
class Dragonball {
private $ballCount = 0; // starts from 0

public function iFoundaBall() {
$this->ballCount++;

if ($this->ballCount === 7) {
echo "You can ask your wish
";
$this->ballCount = 0; // reset to 0
}
}
}

// Example usage:
$goku = new Dragonball();

for ($i = 0; $i < 10; $i++) {
$goku->iFoundaBall();
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we run php on tomcat server?

1051


What is php and its features?

1060


Why laravel is best php framework?

1002


How can I load data from a text file into a table?

1004


What is the difference between single quoted string and double quoted string?

1097


How to convert a json string to an array in php?

1064


What is $_ request in php?

896


Explain about require and include function?

1003


How to test if a variable is an array?

1124


Tell me how to create a session? How to set a value in session? How to remove data from a session?

998


Should I use mysqli or pdo?

955


What is a variable cost example?

1039


Which is not a php magic constant?

1068


What are interfaces in php?

967


What does the unlink() function mean?

1085