fork download
  1. <?php
  2. class Produto {
  3. private $cpu;
  4. private $mb;
  5. private $psu;
  6. public function __construct($cpu, $mb) {
  7. $this->cpu = $cpu;
  8. $this->mb = $mb;
  9. }
  10. function getCpu() {
  11. return $this->cpu;
  12. }
  13. function setCpu($cpu) {
  14. $this->cpu = cpu;
  15. }
  16. function getMb() {
  17. return $this->mb;
  18. }
  19. function setMb($mb) {
  20. $this->mb = mb;
  21. }
  22. }
  23.  
  24. $produto = new Produto('Core i7 7700', 'Z270');
  25. echo $produto->getCpu();
  26. ?>
  27.  
  28. //https://pt.stackoverflow.com/q/237154/101
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
Core i7 7700
//https://pt.stackoverflow.com/q/237154/101