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


PHP Func::longURLtoShort方法代碼示例

本文整理匯總了PHP中Func::longURLtoShort方法的典型用法代碼示例。如果您正苦於以下問題:PHP Func::longURLtoShort方法的具體用法?PHP Func::longURLtoShort怎麽用?PHP Func::longURLtoShort使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Func的用法示例。


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

示例1: str_replace

			$desc = str_replace(' ','',func::stripHTML($readFeed['description']));				
			if(empty($desc)) {
				$desc = '<span class="empty">'._t('설명이 없습니다.').'</span>';
			}						
			$posts = FeedItem::getFeedItemsByFeedId($read,10);					
?>
<div class="wrap">
	<div class="read_item read_item1">
		<?php echo drawAdminBoxBegin('item_wrap');?>
			<div id="read_item1" class="item">
				<h2><?php echo $readFeed['title'];?></h2>
				<div class="extra">		
				
					<?php echo _t('수집일');?> : <span class="date"><?php echo date('y.m.d H:i:s', $readFeed['created']);?></span> <span class="date_text">(<?php echo $date;?>)</span> &nbsp;
					<?php echo _t('주소');?> : <a href="<?php echo $readFeed['blogURL'];?>" target="_blank"><?php echo Func::longURLtoShort($readFeed['blogURL'],35,20,15);?></a> <br />

					<?php echo _t('마지막업데이트');?> : <span class="date"><?php echo date('y.m.d H:i:s', $readFeed['lastUpdate']);?></span> <span class="date_text">(<?php echo $date2;?>)</span> 
					&nbsp;
					<?php echo _t('수집된 글수');?> :  <span class="count"><?php echo $readFeed['feedCount'];?></span>
				</div>
				<div class="data">	
<?php
			if($noVerifier) {
?>
				<div class="verifier_wrap">
					<div class="no_verifier">
						<?php echo _t('이 블로그는 현재 인증이 되지 않은 블로그입니다.<br />인증되지 않은 블로그는 업데이트 되지않습니다.');?>
					</div>

					<div class="verifier_note">
開發者ID:ncloud,項目名稱:bloglounge,代碼行數:30,代碼來源:index.php


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