Skip to content

Instantly share code, notes, and snippets.

@rbezerra
Created May 29, 2015 14:12
Show Gist options
  • Select an option

  • Save rbezerra/9bae4cf538060145a7b0 to your computer and use it in GitHub Desktop.

Select an option

Save rbezerra/9bae4cf538060145a7b0 to your computer and use it in GitHub Desktop.
<?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