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


PHP FabrikString::truncate方法代碼示例

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


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

示例1: getRSSFeed

 /**
  * get fabrikar.com rss feed
  * @return string
  */
 function getRSSFeed()
 {
     //  get RSS parsed object
     $options = array();
     $options['rssUrl'] = 'http://feeds.feedburner.com/fabrik';
     $options['cache_time'] = 86400;
     $rssDoc =& JFactory::getXMLparser('RSS', $options);
     if ($rssDoc == false) {
         $output = JText::_('Error: Feed not retrieved');
     } else {
         // channel header and link
         $title = $rssDoc->get_title();
         $link = $rssDoc->get_link();
         $output = '<table class="adminlist">';
         $output .= '<tr><th colspan="3"><a href="' . $link . '" target="_blank">' . JText::_($title) . '</th></tr>';
         $items = array_slice($rssDoc->get_items(), 0, 3);
         $numItems = count($items);
         if ($numItems == 0) {
             $output .= '<tr><th>' . JText::_('No news items found') . '</th></tr>';
         } else {
             $k = 0;
             for ($j = 0; $j < $numItems; $j++) {
                 $item = $items[$j];
                 $output .= '<tr><td class="row' . $k . '">';
                 $output .= '<a href="' . $item->get_link() . '" target="_blank">' . $item->get_title() . '</a>';
                 $output .= '<br />' . $item->get_date('Y-m-d');
                 if ($item->get_description()) {
                     $description = FabrikString::truncate($item->get_description(), array('wordcount' => 50));
                     $output .= '<br />' . $description;
                 }
                 $output .= '</td></tr>';
             }
         }
         $k = 1 - $k;
         $output .= '</table>';
     }
     return $output;
 }
開發者ID:romuland,項目名稱:khparts,代碼行數:42,代碼來源:home.php

示例2: getRSSFeed

 /**
  * Get fabrikar.com rss feed
  *
  * @return string
  */
 public function getRSSFeed()
 {
     //  Get RSS parsed object - Turn off error reporting as SimplePie creates strict error notices.
     $origError = error_reporting();
     error_reporting(0);
     $version = new JVersion();
     if ($version->RELEASE == 2.5) {
         //  get RSS parsed object
         $options = array();
         $options['rssUrl'] = 'http://feeds.feedburner.com/fabrik';
         $options['cache_time'] = 86400;
         $rssDoc = JFactory::getXMLparser('RSS', $options);
     } else {
         $rssDoc = JSimplepieFactory::getFeedParser('http://feeds.feedburner.com/fabrik', 86400);
     }
     if ($rssDoc == false) {
         $output = FText::_('Error: Feed not retrieved');
     } else {
         // Channel header and link
         $title = $rssDoc->get_title();
         $link = $rssDoc->get_link();
         $output = '<table class="adminlist">';
         $output .= '<tr><th colspan="3"><a href="' . $link . '" target="_blank">' . FText::_($title) . '</th></tr>';
         $items = array_slice($rssDoc->get_items(), 0, 3);
         $numItems = count($items);
         if ($numItems == 0) {
             $output .= '<tr><th>' . FText::_('No news items found') . '</th></tr>';
         } else {
             $k = 0;
             for ($j = 0; $j < $numItems; $j++) {
                 $item = $items[$j];
                 $output .= '<tr><td class="row' . $k . '">';
                 $output .= '<a href="' . $item->get_link() . '" target="_blank">' . $item->get_title() . '</a>';
                 $output .= '<br />' . $item->get_date('Y-m-d');
                 if ($item->get_description()) {
                     $description = FabrikString::truncate($item->get_description(), array('wordcount' => 50));
                     $output .= '<br />' . $description;
                 }
                 $output .= '</td></tr>';
                 $k = 1 - $k;
             }
         }
         $output .= '</table>';
     }
     error_reporting($origError);
     return $output;
 }
開發者ID:glauberm,項目名稱:cinevi,代碼行數:52,代碼來源:home.php

示例3: array

</td>
					<td><?php 
    echo $row->title;
    ?>
</td>
					<td><?php 
    echo $row->user;
    ?>
</td>
					<td  style="text-align:center">
					<a href="<?php 
    echo $row->view;
    ?>
">
					<a class="fabrikTip" opts="{position:'right'}" title="<?php 
    echo FabrikString::truncate($row->content, array('tip' => false, 'wordcount' => 200));
    ?>
" >
						<?php 
    echo FabrikHelperHTML::icon('icon-search');
    ?>
					</a></td>
					<td>
						<div class="btn-group">
							<a class="dropdown-toggle btn btn-mini" data-toggle="dropdown" href="#">
								<span class="caret"></span>
							</a>
							<ul class="dropdown-menu">
								<li>
									<a class="approve" href="<?php 
    echo $url . 'approve';
開發者ID:jfquestiaux,項目名稱:fabrik,代碼行數:31,代碼來源:default.php


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