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


PHP CFunctions::cut_string方法代碼示例

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


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

示例1: date

		  ?>
		  </td>
	      <td class="zinfo"><?php
		   $__text = CFunctions::cut_string($user['prenom'], $max_input_text+3);
	      echo $__text;
		  if($user['prenom'] != $__text) {
		  ?>
	        <div class="bulle">
			        <?php echo $user['prenom']; ?>
			</div>
	      <?php
			}
		  ?>
		  </td>
	      <td class="zinfo"><?php
		  $__text = CFunctions::cut_string($user['societe'], $max_input_text+3);
	      echo $__text;
		  if($user['societe'] != $__text) {
		  ?>
	        <div class="bulle">
			        <?php echo $user['societe']; ?>
			</div>
	      <?php
		  }
		  ?>
		  </td>
	      <td align="center"><?php echo $user['pays'] ?></td>
	      <td align="center"><?php echo date("d-m-20y", strtotime($user['date']));?></td>
	      <td align="center"><?php echo CHtmlUser::get_etat_contact($user['id'], $user['etat_contact'], 0) ?></td>
	      <td align="center">R<?php echo $user['relance']; ?></td>
	      <td style="text-align: center;"><?php echo $opp_num[$user['idopportunite']]; ?></td>
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:31,代碼來源:gr_user_list_ajax.php

示例2: utf8_encode

						  echo utf8_encode($__text);
						  if($user['resp_ent'] != $__text) {
						  ?>
						  <div class="bulle">
							  <?php echo utf8_encode($user['resp_ent']); ?>
						  </div>
              	  <?php 
              }
              ?>			  
			  </td>
			  
              <td class="zinfo"> 
			  
			  <?php
			  //--------------- Owen 01/2011 Limitation de caractère
              $__text = CFunctions::cut_string($user['nom_ent'], $max_input_text+3);
              echo utf8_encode($__text);
              if($user['nom_ent'] != $__text) {
              	?>
              	 <div class="bulle">
			         <?php echo utf8_encode($user['nom_ent']); ?>
			     </div>
              	<?php 
              }
              ?>
			  </td>
			  <td class="zinfo"> 
			  <?php 
				echo $user['id_sec'];
				$sql_nomSec='select nom_sec FROM secteur WHERE id_sec='.$user['id_sec'];
				$nomSec=CBdd::select_one($sql_nomSec, 'nom_sec');
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:31,代碼來源:user_groupeUtilitaire.php

示例3:

$zSqlPj .= " WHERE " . $zTableUtilite . ".id = " . $iOppId ;

$toPieces = CBdd::select_row($zSqlPj) ;

$zHtml = '' ;

if ($toTextes)
{
    $zTxtCut = CFunctions::cut_string($toTextes['nom'], 15) ;
    $zHtml .= '<p>' ;
    $zHtml .= '    <label class="info">' . $zTxtCut ;
    $zHtml .= ($zTxtCut != $toTextes['nom']) ? '    <span class="bulle">' . $toTextes['nom'] . '</span>' : '' ;
    $zHtml .= '    </label>' ;
    $zHtml .= '    <input type="radio" value="1" class="radioText" name="radioText" /> Oui' ;
    $zHtml .= '    <input type="radio" value="0" class="radioText" name="radioText" checked="checked" /> Non' ;
    $zHtml .= '</p>' ;
}

if ($toPieces)
{
    $zPieceCut = CFunctions::cut_string(str_replace('../../userfiles/pieces_jointes/', '', $toPieces['piece']), 15) ;
    $zHtml .= '<p>' ;
    $zHtml .= '    <label class="info">' . $zPieceCut ;
    $zHtml .= ($zPieceCut != $toPieces['piece']) ? '    <span class="bulle">' . $toPieces['piece'] . '</span>' : '' ;
    $zHtml .= '    </label>' ;
    $zHtml .= '    <input type="radio" value="1" class="radioPiece" name="radioPiece" /> Oui' ;
    $zHtml .= '    <input type="radio" value="0" class="radioPiece" name="radioPiece" checked="checked" /> Non' ;
    $zHtml .= '</p>' ;
}
    
echo $zHtml ;
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:31,代碼來源:hb_get_mail_contentContact.php


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