Created
May 29, 2015 14:12
-
-
Save rbezerra/9bae4cf538060145a7b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class cliente { | |
| public $nome; | |
| public $saldo; | |
| public function confirmarrecebimento(){ echo "<br/>Confirmado o recebimento"; } | |
| public function pagarconta($valor){ echo "<br/>Foi pago o valor de R$ ".$valor; } | |
| } | |
| include("cliente-class.php"); | |
| $tempCliente = new Cliente(); | |
| $tempCliente->nome = "WESLEY"; | |
| $tempCliente->saldo = 100; | |
| $tempCliente->confirmarrecebimento(); | |
| $tempCliente->pagarconta(300); | |
| echo "<br/>Nome do Cliente : ".$tempCliente->nome; | |
| echo "<br/>Nome do Saldo : ".$tempCliente->saldo; | |
| ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment