fork download
  1. <?php
  2.  
  3. function punyaHuruf(string $kataPertama, string $kataKedua) {
  4. foreach(str_split($kataPertama) as $huruf) {
  5. if (strpos($huruf, $kataKedua) === false) {
  6. return false;
  7. }
  8. }
  9.  
  10. return true;
  11. }
  12.  
  13. echo punyaHuruf('cat', 'antarctica'); // TRUE
  14. echo punyaHuruf('cat', 'australia'); // FALSE
  15. echo punyaHuruf('cat', 'ANTARCTICA'); // TRUE
  16. ?>
Success #stdin #stdout 0.03s 26108KB
stdin
Standard input is empty
stdout
Standard output is empty