view_inte.php 294 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php /** * Tiny - A PHP Framework For Web Artisans * @author Tiny <tinylofty@gmail.com> * @copyright Copyright(c) 2010-2014 http://www.tinyrise.com All rights reserved * @version 1.0 */ //视图接口 interface IView { public $data; public function render($filename); } ?>