24 lines
573 B
PHP
24 lines
573 B
PHP
<?php
|
|
/**
|
|
* ZenTaoPHP的helper类。
|
|
* The helper class file of ZenTaoPHP framework.
|
|
*
|
|
* The author disclaims copyright to this source code. In place of
|
|
* a legal notice, here is a blessing:
|
|
*
|
|
* May you do good and not evil.
|
|
* May you find forgiveness for yourself and forgive others.
|
|
* May you share freely, never taking more than you give.
|
|
*/
|
|
|
|
include dirname(__FILE__) . '/base/helper.class.php';
|
|
/**
|
|
* 该类实现了一些常用的方法
|
|
* The helper class, contains the tool functions.
|
|
*
|
|
* @package framework
|
|
*/
|
|
class helper extends baseHelper
|
|
{
|
|
}
|