Tag: construct

  • Exemplo de Classe PHP

    <?php class Produto { private ?int $id; // ? pode receber valor null private string $tipo; private string $nome; private string $descricao; private string $imagem; private float $preco; public function __construct(?int $id, string $tipo, string $nome, string $descricao, float $preco, string $imagem = “imagem.png”) { $this->id = $id; $this->tipo = $tipo; $this->nome = $nome; $this->descricao…