1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * @copyright (c) 2011 aircheng.com
- * @file article.php
- * @brief 关于文章管理
- * @author chendeshan
- * @date 2011-02-14
- * @version 0.6
- */
- /**
- * @class article
- * @brief 文章管理模块
- */
- class Article
- {
- //显示标题
- public static function showTitle($title,$color=null,$fontStyle=null)
- {
- $str='<span style="';
- if($color!=null) $str.='color:'.$color.';';
- if($fontStyle!=null)
- {
- switch($fontStyle)
- {
- case "1":
- $str.='font-weight:bold;';
- break;
- case "2":
- $str.='font-style:oblique;';
- break;
- }
- }
- $str.='">'.$title.'</span>';
- return $str;
- }
- }
|