view_inte.php 294 Bytes
<?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);
}
?>