本文整理汇总了PHP中message::output方法的典型用法代码示例。如果您正苦于以下问题:PHP message::output方法的具体用法?PHP message::output怎么用?PHP message::output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类message
的用法示例。
在下文中一共展示了message::output方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: message
* @copyright (c) 2006 by bizeway.com
* @version $Id$
* @package ArthurXF
* @subpackage message
*/
require_once '../config/config.inc.php';
require_once "../class/message.class.php";
require_once '../..' . __WEBADMIN_ROOT . '/checklogin.php';
$objWebInit = new message();
$objWebInit->db();
//访问权限检查
if (!$objWebInit->checkPopedomG($_SESSION['user_id'], 'w')) {
check::AlertExit('对不起,您没有读权限', -1);
}
// 取得文章信息
$arrInfo = $objWebInit->getInfo($_REQUEST['id']);
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$arrInfo['id'] = $_POST['id'];
$arrInfo['state'] = $_POST['state'];
$arrInfo['remark'] = $_POST['remark'];
$objWebInit->saveInfo($arrInfo, 1);
check::WindowLocation('index.php', $_SERVER["QUERY_STRING"]);
}
// 输出到模板
$arrMOutput["template_file"] = "admin.html";
$arrMOutput["smarty_assign"]['arrData'] = $arrInfo;
$arrMOutput["smarty_assign"]['arrGState'] = $arrGState;
$arrMOutput["smarty_assign"]['action_type'] = "save";
$arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['admin_main_dir'] . 'submit.htm';
$objWebInit->output($arrMOutput);
示例2:
?>
<!-- left_navigation_eof //-->
</td>
<?php
}
?>
<!-- body_text //-->
<td class="boxCenter" valign="top">
<h1 class="contentBoxHeading"><?php
echo HEADING_TITLE;
?>
</h1>
<?php
echo $message->output();
?>
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<?php
if ($_REQUEST['action'] != 'upload') {
?>
<td valign="top"><table border="0" width="100%" cellspacing="2" cellpadding="0" class="contentListingTable">
<tr class="dataTableHeadingRow">
<td class="dataTableHeadingContent" align="right"><?php
echo TABLE_HEADING_ACTION;
?>
</td>
<td class="dataTableHeadingContent" width="90%"><?php