How can I clean this 'controller' file in this mini-php-framework with deals with multilingual websites
问题 I came up with a mini-framework which deals with multilingual websites without using Gettext or Zend_Translate by joining together very good answers from previous questions I asked like this one. languages/lang.en.php (the multilingual content source): <?php $lang = array( 'tagline_h2' => 'I create <a href="#content">websites</a>...', languages/lang.es.php (the multilingual content source in other language): <?php $lang = array( 'tagline_h2' => 'Creo <a href="#content">sitios webs</a>...',