Jump to content
Fórum Script Brasil
  • 0

Problemas com destruct em um app php MVC


Blackmage

Question

Estou acostumado com java, mas preciso desenvolver um pequeno portal em php

Para deixar o código mais organizado estou tentando usar MVC da mesma forma que uso em Java, mas não está funcionando

Vejam meus arquivos de teste

Model.php

<?php
Class Cliente {
    private $nome;
    
    function __construct($nome) {
        $this->nome = $nome;
    }
    
    function __destruct() {
        echo("Model $this->nome destruido <br/>");
    }
    
    function setNome($nome) {
        $this->$nome = $nome;
    }
    
    function getNome() {
        return $this->nome;
    }
}
?>
Controller.php
<?php
require_once ("MVC/model/Model.php");

Class ClienteController {
    var $lista;
    
    function __construct($action) {
        if(empty($action)) {
            $cli1 = new Cliente("Cliente1");
            $cli2 = new Cliente("Cliente2");
            $lista = array($cli1, $cli2);
        }
    }
    
}
?>
View.php
<?php require_once ("MVC/Controller/Controller.php");?>
<?php $c = new ClienteController(null);?>
<html>
<body>
    <table>
        <tr>
            <td>Nome</td>
        </tr>
        <?php
        for($i = 0; $i < sizeof($c->lista); $i++) {
            echo("<tr>");
            echo("<td>".$c->lista[$i]->getNome()."</td>");
            echo("</tr>");
        } 
        ?>
    </table>
</body>
</html>

mas a saida é essa

Model Cliente1 destruido

Model Cliente2 destruido

Nome

O php está destruindo o objeto cliente mesmo tendo a referencia $lista à eles

alguém sabe a causa disso?

Edited by Blackmage
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...