Código PHP Switch
Abstract: Código PHP Switch. Pesquise 861.000+ trabalhos acadêmicosPor: junior.silva • 11/9/2014 • Abstract • 581 Palavras (3 Páginas) • 287 Visualizações
public function criaUserTitan() {
$tu = $this->pegaUserTitan();
switch (!$tu):
case $this->id_nacionalidade == 1 || $this->id_nacionalidade == 2:
$tu = new TitanUser();
$tu->setPorLogin($this->cpf);
if (!$tu->getId()) {
$dados = array("_name" => $this->nome,
"_login" => $this->cpf,
"cpf" => $this->cpf,
"_email" => $this->email,
"pass" => $this->passaporte
);
}
$tu = new TitanUser();
$tu->update($dados);
$tu->salvar();
break;
case $this->id_nacionalidade == 3:
$tu = new TitanUser();
$tu->setPorLogin($this->passaporte);
if (!$tu->getId()) {
$dados = array("_name" => $this->nome,
"_login" => $this->passaporte,
"cpf" => $this->cpf,
"_email" => $this->email,
"pass"=> $this->passaporte
);
$tu = new TitanUser();
$tu->update($dados);
$tu->salvar();
}
break;
endswitch;
...