Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Usuario {
- private $nome;
- public function retornanome(){
- return $this->nome = "Marcos Vinícius";
- }
- }
- $obj = new Usuario;
- echo $obj->retornanome();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement