当前位置: 首页>>代码示例>>PHP>>正文


PHP message::output方法代码示例

本文整理汇总了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);
开发者ID:TiMoChao,项目名称:xingfu,代码行数:30,代码来源:modifyinfo.php

示例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;
    ?>
&nbsp;</td>
                <td class="dataTableHeadingContent" width="90%"><?php 
开发者ID:nomadcomanche,项目名称:zdorov_shop,代码行数:31,代码来源:cip_manager.php


注:本文中的message::output方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。