Oldukça basit bir soru:
Ben Codeigniter MVC framework olduğunu biliyoruz - ancak Codeigniter ne tasarım deseni kullanıyor?
İlk bakıldığında Cephe gibi görünüyor görünüyorsun, ama yanlış olabilir.
Edit:
Perhaps I should describe Codeigniter for those who don't use it.
In Codeigniter you have a concept of a Controller and a Model, which each has their own separate folder. In each of the folders you create a file:
cart.php:
<?php
class Cart {
//...
}
?>
Sonra da bir model olabilir:
<?php
class User {
function login(){...}
}
?>
Sınıf Cart içinde, sadece kullanarak Kullanıcı oturum açma işlevi kullanabilirsiniz $ this-> user-> login ()
Çerçeve User nesnesinin bir nesne yapar ve programcı değil, çünkü ben bu ilginç buluyorum.