www.gusucode.com > baigo CMS PHP开源网站管理系统 v1.2.2源码程序 > baigocms_v1.2.2/bg_core/control/api/notice.class.php

    <?php
/*-----------------------------------------------------------------
!!!!警告!!!!
以下为系统文件,请勿修改
-----------------------------------------------------------------*/

//不能非法包含或直接执行
if(!defined("IN_BAIGO")) {
    exit("Access Denied");
}

/*-------------文章类-------------*/
class API_NOTICE {

    /**
     * notice_list function.
     *
     * @access public
     * @return void
     */
    function api_test() {
        $_str_echostr     = fn_get("echostr");

        echo $_str_echostr;
    }
}