Last active
June 18, 2020 06:40
-
-
Save malikalichsan/1a501f1734fba2848fec170e55ae1c03 to your computer and use it in GitHub Desktop.
Basic looping using Dragon Ball as example in PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DragonBall { | |
public $ballCount = 0; | |
public function iFoundBall($loop) { | |
for ($i = 0; $i < $loop; $i++) { | |
$ball = $this->ballCount+=1; | |
echo 'Ball ' . $ball . ' '; | |
if ($this->ballCount == 7) { | |
echo 'Ho Ho Ho, I\'m Shenron, You can ask your wish'; | |
exit; | |
} | |
} | |
$this->ballCount = 0; | |
} | |
} | |
$dragonBall = new DragonBall; | |
echo $dragonBall->iFoundBall(8); // You can try to change the parameter | |
// THIS IS THE OUTPUT | |
// Ball 1 Ball 2 Ball 3 Ball 4 Ball 5 Ball 6 Ball 7 Ho Ho Ho, I'm Shenron, You can ask your wish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment