1 / 13

Classes e Funções

Classes e Funções. Função. function nome ( argumentos ) { comandos [ return expressão] } nome (argumentos). Função. <? function triplo ($numero) { $x = $numero * 3; return $x; } $val = 5 Eco= “triplo($val)”; ?>. Função. <? function triplo (&$numero) { $x = $numero * 3;

anaya
Download Presentation

Classes e Funções

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Classes e Funções

  2. Função function nome (argumentos) { comandos [return expressão] } nome (argumentos)

  3. Função <? function triplo ($numero) { $x = $numero * 3; return $x; } $val = 5 Eco= “triplo($val)”; ?>

  4. Função <? function triplo (&$numero) { $x = $numero * 3; return $x; } $val = 5 triplo($val); Echo “$val”; ?>

  5. Função funtion alunos () { $aluno [ ] = Fulano; $aluno [ ] = Beltrano; $aluno [ ] = Cicrano; return $anulos; }

  6. Função function notas ($anulo, $nota = “0”) { echo “ $aluno ............ $nota”; } notas (Fulano, 9) notas (Cicrano, 8) notas (Beltrano)

  7. Função recursiva function conta($val) { If ( $val != 0) { eco “$val” conta ($val -1); } } conta (5)

  8. Classe class nome { <procedimentos> }

  9. Classe • var cria uma variável • $this variável que referencia o próprio objeto • new determina a classe do objeto • -> acessa os valores de um array dentro da classe

  10. Classe $class =new classe(); $class -> função(parametros);

  11. Classe • private • protected • extends

  12. Classe class ola { private $var1 =“Oi, var1\n”; protected $var2 =“ Oi, var1 \n”; function cump() { print “ola: “.$this->var1. “<br>”; print “ola: “.$this->var2. “<br>”; }

  13. Classe class ola2 extends ola { function cump() { print “ola: “.$this->var1. “<br>”; print “ola: “.$this->var2. “<br>”; }

More Related