當前位置: 首頁>>代碼示例>>PHP>>正文


PHP moneyit函數代碼示例

本文整理匯總了PHP中moneyit函數的典型用法代碼示例。如果您正苦於以下問題:PHP moneyit函數的具體用法?PHP moneyit怎麽用?PHP moneyit使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了moneyit函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: CashIt

 public static function CashIt($order)
 {
     if (!$order['state'] == 'pay') {
         return 0;
     }
     //update user money;
     $user = Table::Fetch('user', $order['user_id']);
     Table::UpdateCache('user', $order['user_id'], array('money' => moneyit($user['money'] - $order['credit'])));
     //update order
     Table::UpdateCache('order', $order['id'], array('state' => 'pay', 'service' => 'cash', 'money' => $order['origin']));
     $order = Table::FetchForce('order', $order['id']);
     ZTeam::BuyOne($order);
 }
開發者ID:jowino,項目名稱:bd786110cact,代碼行數:13,代碼來源:ZOrder.class.php

示例2: moneyit

						<label>排序</label>
						<input type="text" size="10" name="sort_order" id="team-create-sort_order" class="number" value="<?php echo $team['sort_order'] ? $team['sort_order'] : 0; ?>" datatype="number"/><span class="inputtip">請填寫數字,數值大到小排序,主推團購應設置較大值</span>
					</div>
					<div class="field">
						<label>代金券使用</label>
						<input type="text" size="10" name="card" id="team-create-card" class="number" value="<?php echo moneyit($team['card']); ?>" require="true" datatype="money" />
						<span class="inputtip">可使用代金券最大麵額</span>
					</div>
					<div class="field">
						<label>邀請返利</label>
						<input type="text" size="10" name="bonus" id="team-create-bonus" class="number" value="<?php echo moneyit($team['bonus']); ?>" require="true" datatype="money" />
						<span class="inputtip">邀請好友參與本單商品購買時的返利金額</span>
					</div>
					<div class="field">
						<label>消費返利</label>
						<input type="text" size="10" name="credit" id="team-create-credit" class="number" value="<?php echo moneyit($team['credit']); ?>" datatype="money" require="true" />
						<span class="inputtip">消費<?php echo $INI['system']['couponname']; ?>時,獲得賬戶餘額返利,單位CNY元</span>
					</div>
					<div class="field">
						<label>免單數量</label>
						<input type="text" size="10" name="farefree" id="team-create-farefree" class="number" value="<?php echo intval($team['farefree']); ?>" maxLength="6" datatype="money" require="true" />
						<span class="inputtip">快遞費用,免單數量:0表示不免運費,2表示,購買2件免運費</span>
					</div>	
                    <div class="field">
						<label>首頁設置</label>
                        
<span style="width:105px;float:left;"><input type="checkbox" class="allowrefund" name="is_index" value="Y" <?php if($team['is_index']=='Y'){?>checked<?php }?>/>上首頁</span>

<span style="width:105px;float:left;"><input type="checkbox" class="allowrefund" name="is_ad" value="Y" <?php if($team['is_ad']=='Y'){?>checked<?php }?>/>廣告單</span>

<span style="width:105px;float:left;"><input type="checkbox"  name="booking" value="1" <?php if($team['booking'] == '1'){?>checked<?php }?> />無需預約</span>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_team_editzz.php

示例3: abs

            <div class="box-content">
                <div class="head">
                     <h2>購買充值 (總金額:<span class="currency"><?php echo $currency; ?></span><?php echo abs($summary); ?>)</h2>
                    <ul class="filter">
						<li class="label">分類: </li>
						<?php echo mcurrent_misc_money($s); ?>
					</ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
						<tr><th width="200">Email/用戶名</th><th width="100">動作</th><th width="160">金額</th><th width="200">支付方式</th><th width="200"><?php echo $action; ?>時間</th></tr>
					<?php if(is_array($flows)){foreach($flows AS $index=>$one) { ?>
						<tr <?php echo $index%2?'':'class="alt"'; ?>>
							<td nowrap><?php echo $users[$one['user_id']]['email']; ?><br/><?php echo $users[$one['user_id']]['username']; ?></td>
							<td nowrap>購買充值</td>
							<td nowrap><span class="money"><?php echo $currency; ?></span><?php echo moneyit(abs($one['money'])); ?></td>
							<td nowrap><?php echo $option_service[$pays[$one['detail_id']]['service']]; ?></td>
							<td nowrap><?php echo date('Y-m-d H:i', $one['create_time']); ?></td>
						</tr>
					<?php }}?>
						<tr><td colspan="5"><?php echo $pagestring; ?></td></tr>
                    </table>
				</div>
            </div>
            <div class="box-bottom"></div>
        </div>
    </div>
</div>

</div> <!-- bd end -->
</div> <!-- bdw end -->
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_misc_money_chargebypay.php

示例4: option_category

$groups = option_category('group', false, false);
$oa = array();
$si = array('sitename' => $INI['system']['sitename'], 'wwwprefix' => $INI['system']['wwwprefix'], 'imgprefix' => $INI['system']['imgprefix']);
foreach ($teams as $one) {
    $city = Table::Fetch('category', $one['city_id']);
    $group = Table::Fetch('category', $one['group_id']);
    $item = array();
    $item['loc'] = $si['wwwprefix'] . "/team.php?id={$one['id']}";
    $item['data'] = array();
    $item['data']['display'] = array();
    $o = array();
    $o['website'] = $INI['system']['sitename'];
    $o['siteurl'] = $INI['system']['wwwprefix'];
    ($o['city'] = $city['name']) || ($o['city'] = '全國');
    $o['title'] = $one['title'];
    $o['class'] = $groups[$one['group_id']];
    $o['image'] = $si['imgprefix'] . '/static/' . $one['image'];
    $o['startTime'] = $one['begin_time'];
    $o['endTime'] = $one['end_time'];
    $o['value'] = $one['market_price'];
    $o['price'] = $one['team_price'];
    if ($one['market_price'] > 0) {
        $o['rebate'] = moneyit(10 * $one['team_price'] / $one['market_price']);
    } else {
        $o['rebate'] = '0';
    }
    $o['bought'] = abs(intval($one['now_number']));
    $item['data']['display'] = $o;
    $oa[] = $item;
}
Output::XmlBaidu($oa);
開發者ID:hhdem,項目名稱:tuangala_v2,代碼行數:31,代碼來源:ganji.php

示例5: team_state

					<?php $one['state'] = team_state($one); ?>
					<tr <?php echo $index%2?'':'class="alt"'; ?> id="team-list-id-<?php echo $one['id']; ?>">
						<td>ID:
						  <?php echo $one['id']; ?><br />
XH:
<?php echo $one['sort_order']; ?></a></a></td>
						<td>
							<?php echo $one['team_type']=='normal' ? '[團購]' : ''; ?>
							<?php echo $one['team_type']=='seconds' ? '[秒殺]' : ''; ?>
							<?php echo $one['team_type']=='goods' ? '[商品]' : ''; ?>
							<a class="deal-title" href="/team.php?id=<?php echo $one['id']; ?>" target="_blank"><?php echo $one['title']; ?></a>
						</td>
						<td nowrap><?php echo $cities[$one['city_id']]['name']; ?><br/><?php echo $groups[$one['group_id']]['name']; ?></td>
						<td nowrap><?php echo date('Y-m-d',$one['begin_time']); ?><br/><?php echo date('Y-m-d',$one['end_time']); ?></td>
						<td nowrap><?php echo $one['now_number']; ?>/<?php echo $one['min_number']; ?></td>
						<td nowrap><span class="money"><?php echo $currency; ?></span><?php echo moneyit($one['team_price']); ?><br/><span class="money"><?php echo $currency; ?></span><?php echo moneyit($one['market_price']); ?></td>
						<td class="op" nowrap>  <?php if($login_user['id']=="1"){?><a href="/ajax/manage.php?action=teamdetail&id=<?php echo $one['id']; ?>" class="ajaxlink">詳情</a>| <?php } else { ?>  <?php }?><a href="/manage/team/edit.php?id=<?php echo $one['id']; ?>">編輯</a> <?php if($login_user['id']=="1"){?>|<a href="/ajax/manage.php?action=teamremove&id=<?php echo $one['id']; ?>" class="ajaxlink" ask="確定刪除本項目嗎?" >刪除</a> <?php } else { ?>  <?php }?>
                        
                        
                        <?php if($login_user['id']=="1"){?>
                        <?php if((in_array($one['state'],array('success','soldout')))){?>|<a href="/manage/team/down.php?id=<?php echo $one['id']; ?>" target="_blank">下載</a><?php }?><?php if($one['delivery']=='express'){?><br /><a href="/manage/team/ajax.php?action=smsexpress&id=<?php echo $one['id']; ?>" class="ajaxlink">短信快遞單號</a><?php }?><br /><a href="/manage/team/downlucky.php?id=<?php echo $one['id']; ?>" target="_blank">下載幸運編號</a>
                
                        <?php } else { ?>  <?php }?>
                        <br />
<a href="/manage/team/editzz.php?id=<?php echo $one['id']; ?>">雜項設置</a><br />
<a href="/manage/team/edit_map.php?id=<?php echo $one['id']; ?>">商戶設置</a>
                        
                        </td>
					</tr>
					<?php }}?>
					<tr><td colspan="7"><?php echo $pagestring; ?></tr>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_team_dsj.php

示例6: array

 $item['data']['companys']['company'] = array();
 $o = array();
 $o['website'] = $INI['system']['sitename'];
 $o['siteurl'] = $INI['system']['wwwprefix'];
 ($o['city'] = $city) || ($o['city'] = '');
 $o['title'] = $one['title'];
 $o['image'] = $si['imgprefix'] . '/static/' . $one['image'];
 $o['soldout'] = $team['now_number'] > $team['max_num'] && $team['max_num'] > 0 ? 'yes' : 'no';
 $o['buyer'] = abs(intval($one['now_number']));
 $o['start_date'] = $one['begin_time'];
 $o['end_date'] = $one['end_time'];
 $o['expire_date'] = $one['expire_time'];
 $o['oriprice'] = $one['market_price'];
 $o['curprice'] = $one['team_price'];
 if ($one['market_price'] > 0) {
     $o['discount'] = moneyit(10 * $one['team_price'] / $one['market_price']);
 } else {
     $o['discount'] = '0';
 }
 $o['tip'] = $one['notice'];
 $item['data']['display'] = $o;
 $p = Table::Fetch('partner', $one['partner_id']);
 $pval = array();
 $pval['name'] = $p['title'];
 $pval['contact'] = $p['tel'];
 $pval['address'] = $p['address'];
 if ($p['longlat']) {
     list($pval['longitude'], $pval['latitude']) = explode(',', $p['longlat']);
 }
 $item['data']['companys']['company'] = $pval;
 $oa[] = $item;
開發者ID:norain2050,項目名稱:zuituware,代碼行數:31,代碼來源:jutao.php

示例7: get_price

function get_price($team_price, $market_price)
{
    return "團購價:¥" . moneyit($team_price) . "<br>原價:¥<lebel style='text-decoration:line-through'>" . moneyit($market_price) . "<label>";
}
開發者ID:yunsite,項目名稱:e-tuan001-com,代碼行數:4,代碼來源:TeamAction.class.php

示例8: json

     }
     Table::Delete('card', $id);
     Session::Set('notice', "代金券 {$id} 刪除成功!");
     json(null, 'refresh');
 } else {
     if ('userview' == $action) {
         $user = Table::Fetch('user', $id);
         $user['costcount'] = Table::Count('order', array('state' => 'pay', 'user_id' => $id));
         $user['cost'] = Table::Count('flow', array('direction' => 'expense', 'user_id' => $id), 'money');
         $html = render('manage_ajax_dialog_user');
         json($html, 'dialog');
     } else {
         if ('usermoney' == $action) {
             need_auth('admin');
             $user = Table::Fetch('user', $id);
             $money = moneyit($_GET['money']);
             if ($money < 0 && $user['money'] + $money < 0) {
                 json('提現失敗 - 用戶餘額不足', 'alert');
             }
             if (ZFlow::CreateFromStore($id, $money)) {
                 $action = $money > 0 ? '線下充值' : '用戶提現';
                 $money = abs($money);
                 json(array(array('data' => "{$action}{$money}元成功", 'type' => 'alert'), array('data' => null, 'type' => 'refresh')), 'mix');
             }
             json('充值失敗', 'alert');
         } else {
             if ('orderexpress' == $action) {
                 need_auth('order');
                 $express_id = abs(intval($_GET['eid']));
                 $express_no = strval($_GET['nid']);
                 if (!$express_id) {
開發者ID:hhdem,項目名稱:tuangala_v2,代碼行數:31,代碼來源:manage.php

示例9: moneyit

<img src="/static/css/i/logo-footer.png" alt="<?php 
    echo $INI['system']['sitename'];
    ?>
" /><?php 
}
?>
</a>
					</div>
					<div class="tot_board">
						<div style="width:40px; float:left;border-right-width: 1px;border-right-style: dashed;border-right-color: #373536;padding: 0px 10px 0px 0px;">
							<p><b>目前</b><br><br></p>
						</div>
						<div>
							<p class="total" style="float:right;"><?php 
echo $currency;
echo moneyit($totalSavedMoney['tsm']);
?>
</p><p>共節省金額: </p>
							<p class="total" style="float:right;"><?php 
echo $allteamcount;
?>
</p><p>共組織團購次數: </p>
						</div>
					</div>
			</li>
		</ul>
		<div class="copyright">
		<p>&copy;<span>2010</span>&nbsp;<?php 
echo $INI['system']['sitename'];
?>
(TuanGaLa.com)版權所有&nbsp;<a href="/about/terms.php">使用<?php 
開發者ID:hhdem,項目名稱:tuangala_v2,代碼行數:31,代碼來源:footer.php

示例10: moneyit

						</p>

					</li>

					<li class="list_price">

						<div class="left">

							<font class="arial font18px fontred"><?php echo $currency; ?> <?php echo moneyit($one['team_price']); ?> </font>

						</div>

						<div class="right">

							原價:<?php echo moneyit($one['market_price']); ?>元

						</div>

					</li>

					<li class="list_address">

						<!--<div class="left" style="position:relative;">

							已有<em><?php echo $one['now_number']; ?></em>人購買

						</div>-->

						<div class="address_info"></div>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:29,代碼來源:team_top.php

示例11: team_discount

function team_discount($team, $save = false)
{
    if ($team['market_price'] < 0 || $team['team_price'] < 0) {
        return '?';
    }
    return moneyit(10 * $team['team_price'] / $team['market_price']);
}
開發者ID:yunsite,項目名稱:hhzuitu,代碼行數:7,代碼來源:common.php

示例12: if

						<p style="margin:5px 0;">申請日期:<input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="cbday" value="<?php echo $cbday; ?>" /> - <input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="ceday" value="<?php echo $ceday; ?>" />&nbsp;操作日期:<input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="dbday" value="<?php echo $dbday; ?>" /> - <input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="deday" value="<?php echo $deday; ?>" />&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/></p>
					</form>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
                     <tr><td colspan="10"><?php echo $pagestring; ?></tr>
					<tr><th width="50">ID</th><th width="200">申請用戶</th><th width="80">用戶餘額</th><th width="80">申請金額</th><th width="100" nowrap>申請時間</th><th width="100" nowrap>提現方式</th><th width="100" nowrap>實際支付</th><th width="50" nowrap>操作</th></tr>
					<?php if(is_array($applys)){foreach($applys AS $index=>$one) { ?>
                   
					<tr <?php echo $index%2?'':'class="alt"'; ?> id="dialog-apply-id" aid="<?php echo $one['id']; ?>">
                  
						<td><?php echo $one['id']; ?></td>
						<td><a href="/ajax/manage.php?action=userview&id=<?php echo $one['user_id']; ?>" class="ajaxlink"><?php echo $users[$one['user_id']]['email']; ?><br/><?php echo $users[$one['user_id']]['username']; ?></a><?php if(Utility::IsMobile($users[$one['user_id']]['mobile'])){?>&nbsp;&raquo;&nbsp;<a href="/ajax/misc.php?action=sms&v=<?php echo $users[$one['user_id']]['mobile']; ?>" class="ajaxlink">短信</a><?php }?>
                       	</td>
                        <td><?php echo moneyit($users[$one['user_id']]['money']); ?></td>
                        <?php if($one['status']=='ask'){?><td style="color:#FF0000">- <?php echo moneyit($one['money']); ?></td><?php } else { ?><td>- <?php echo moneyit($one['money']); ?></td><?php }?>
                        <td nowrap><?php echo date('Y-m-d H:i', $one['create_time']); ?></td>
                        
                        <td nowrap><?php echo $one['withdraw_direction']; ?></td>
                        <td nowrap><?php echo $one['withdrawpay']; ?></td>
						<td class="op" nowrap><!--<input type="text" class="h-input" id="dialog-withdraw-content" name="content" value="<?php echo $one['content']; ?>" /><br /><input type="submit" value="審核通過" onclick="return X.manage.be();"/> <input type="submit" value="拒絕提現" onclick="return X.manage.no();"/>-->
                        <?php if($one['status']=='ask'){?>
                        <!--<a href="/ajax/apply.php?action=withdraw_be&id=<?php echo $one['id']; ?>" class="ajaxlink">審核通過</a>--><a href="/ajax/apply.php?action=withdraw_do&id=<?php echo $one['id']; ?>" class="ajaxlink" style="font-weight:bold; color:#FF0000;">處理</a> | 
                        <a href="/ajax/apply.php?action=withdraw_no&id=<?php echo $one['id']; ?>" class="ajaxlink">拒絕提現</a><br /><a href="/ajax/apply.php?action=apply_cancel_admin&id=<?php echo $one['id']; ?>" class="ajaxlink">代客取消</a> | 
                        <?php } else if($one['status']=='no') { ?><font color="#FF0000">拒絕提現</font> By:<?php echo $one['admin_name']; ?><br /><?php echo date('Y-m-d H:i', $one['done_time']); ?>
                        <?php } else if($one['status']=='cancel') { ?>取消提現 By:<?php echo $one['admin_name']; ?><br /><?php echo date('Y-m-d H:i', $one['done_time']); ?>
                        <?php } else if($one['status']=='be') { ?>審核通過 By:<?php echo $one['admin_name']; ?>(<?php echo $one['admin_id']; ?>)<br /><?php echo date('Y-m-d H:i', $one['done_time']); ?>
                        <?php }?> <a href="/ajax/apply.php?action=withdraw_view&id=<?php echo $one['id']; ?>" class="ajaxlink">詳情</a></td>
                      
					</tr>
                   
開發者ID:noikiy,項目名稱:mdwp,代碼行數:30,代碼來源:manage_caiwu_withdraw.php

示例13: need_login

need_login();
if (is_post() && isset($_POST['giftpay'])) {
    if (!$_POST['from'] || !$_POST['to'] || !$_POST['amount']) {
        Session::Set('error', 'Please do not submit it untill finished.');
    }
    $table = new Table('gift_card', $_POST);
    $table->code = Utility::GenSecret(8, 'mix');
    $table->email = $_POST['gift_card']['delivery']['email_address'];
    $table->create_time = time();
    $table->user_id = $login_user_id;
    $order_id = $table->Insert(array('user_id', 'from', 'to', 'message', 'amount', 'code', 'email', 'create_time', 'paytype'));
    if (!$order_id || !($order = Table::Fetch('gift_card', $order_id))) {
        die('404 Not Found');
    }
    $randno = rand(1000, 9999);
    $total_money = moneyit($order['amount']);
    /* micdim: paypal support */
    if ($order['paytype'] == 'paypal') {
        /* credit pay 
        	$credit = moneyit($order['origin'] - $total_money);
        	if ($order['credit']!=$credit) {
        		Table::UpdateCache('order', $order_id, array('credit'=>$credit,));
        	}
        	 end */
        $_input_charset = 'utf-8';
        //$service = 'create_direct_pay_by_user'; // what does it mean??
        $partner = $INI['paypal']['mid'];
        $security_code = $INI['paypal']['sec'];
        $seller_acc = $INI['paypal']['acc'];
        $sign_type = 'MD5';
        $out_trade_no = "paypal-{$order['id']}-{$randno}";
開發者ID:jowino,項目名稱:bd786110cact,代碼行數:31,代碼來源:giftpay.php

示例14: template

<?php include template("wap_header");?>

<h2><a href="index.php">今日主推</a>&nbsp;|&nbsp;<a href="now.php">正在團購</a>&nbsp;|&nbsp;往期團購</h2>

<?php if(is_array($teams)){foreach($teams AS $team) { ?>
<p><?php echo ++$index; ?>.&nbsp;<a href="team.php?id=<?php echo $team['id']; ?>"><?php echo $team['title']; ?></a></p>
<p>現價:<?php echo $currency; ?><?php echo moneyit($team['team_price']); ?> , 原價:<?php echo $currency; ?><?php echo moneyit($team['market_price']); ?> , 折扣:<?php echo team_discount($team); ?>折 , 節省:<?php echo $currency; ?><?php echo moneyit($team['market_price']-$team['team_price']); ?></p>
<p><a href="team.php?id=<?php echo $team['id']; ?>"><img src="<?php echo team_image($team['image'], true); ?>" width="200" height="120" /></a></p>
<?php }}?>

<?php echo $pagestring; ?>

<?php include template("wap_footer");?>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:13,代碼來源:wap_done.php

示例15: template

<?php include template("header");?>
<div class="layout">
  <div class="team_main" style="overflow:hidden">
   <div class="box-content">
     <div class="dashboard" id="dashboard"><ul><?php echo current_account('/credit/score.php'); ?></ul> </div>
   <div class="left">
          <div class="head-mymlt">
          <h2></h2>
          <ul><?php echo current_credit_index('records'); ?></ul>
          </div> 
       
		    <div class="credit-title size14-black">當前的賬戶積分是:<strong class="size24-red"><?php echo moneyit($login_user['score']); ?></strong>分</div>   <div class="sect" style="border: 1px solid #E5E5E5;">	
	<table id="order-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
						<tr><th width="150" height="36" align="left" bgcolor="#F8F7F7" class="b-bottom"><div class="left-10px">兌換時間</div></th><th width="398" align="center" bgcolor="#F8F7F7" class="b-bottom">詳情</th><th width="150" align="center" bgcolor="#F8F7F7" class="b-bottom">狀態</th></tr>
						<?php if(is_array($credits)){foreach($credits AS $index=>$one) { ?>
						<tr <?php echo $index%2?'':'class="alt"'; ?>><td height="32" style="text-align:left;" class="b-bottom"><div class="left-10px"><?php echo date('Y-m-d H:i', $one['create_time']); ?></div></td><td align="left" class="b-bottom"><?php echo ZCredit::Explain($one); ?></td><td align="center" class="b-bottom"><?php if(($one['state']=='unpay')){?>未發貨<?php } else { ?>已發貨<?php }?></td></tr>
						<?php }}?>
						<tr><td colspan="4"><div class="fanye"><?php echo $pagestring; ?></div></td></tr>
              </table>
		</div>
          
              
   </div>  
     <div class="right"> <?php include template("block_side_score");?> </div>
   </div>
   </div>
</div>


		
開發者ID:noikiy,項目名稱:mdwp,代碼行數:27,代碼來源:credit_records.php


注:本文中的moneyit函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。