Guest User

Untitled

a guest
Jul 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. class MyClass{
  3.     public $name = Jacopo;
  4.     public function SayName() {
  5.         echo "Ciao" . $this->name ;
  6.         }
  7.         }
  8.         $MyClass= new MyClass();
  9.         $MyClass->SayName();
  10.         ?>
Add Comment
Please, Sign In to add comment