3v4l.org

run code in 300+ PHP versions simultaneously
<?php class induk { protected function alas() { return "Alas"; } protected function miring() { return "Miring"; } } // turunkan class induk ke bagas class anak extends induk { protected function tinggi() { return "Tinggi"; } } // turunkan class bagas ke cucu class cucu extends bagas { protected function luas() { return "Luas"; } public function pewarisan(){ $a = $this->alas(); $b = $this->miring(); $c = $this->tinggi(); $d = $this->luas(); return "$a -> $b -> $c -> $d"; } } // buat objek dari class cucu (instansiasi) $new_pewarisan = new cucu(); //panggil method objek echo $new_pewarisan->pewarisan(); // $new_pewarisan->induk(); // Fatal error: Call to protected method komputer::induk() ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Class "bagas" not found in /in/MVi65:20 Stack trace: #0 {main} thrown in /in/MVi65 on line 20
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
37.44 ms | 401 KiB | 8 Q