Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Last active February 25, 2017 23:15
Show Gist options
  • Save ilhamarrouf/308c1efd6843827d0fc57f8989330c02 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/308c1efd6843827d0fc57f8989330c02 to your computer and use it in GitHub Desktop.
OOP PHP
<?php
trait daftarRumus
{
public function luas_persegi()
{
return "ini luas persegi";
}
}
class Rumus
{
use daftarRumus;
}
$rumus = new Rumus();
echo $rumus->luas_persegi();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment