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


PHP XString::delAllSpace方法代碼示例

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


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

示例1: dirname

<?php include_once dirname(__file__).'/../_headergohome.php'; ?>
    <div class="mt15 ml10 mr10 pt10 pb10 bg_w b_ra5">
        <div class="hos_t pb5 bb_e mb10 pr20">
            <p class="fl keshi_icon_intro f_t17">科室介紹</p>
            <p class="clear_b"></p>
        </div>

    <?php 
    $intro = XString::delAllSpace($hospitalFaculty->intro);
    $intro = htmlspecialchars_decode($intro); 
    $intro = strip_tags($intro);

    if (strlen($intro) > 60)
    { ?>
        <p class="dis_con_ks mb5 lh140 gray3"><a href="<?=$hospitalFaculty->getTouchHospitalFacultyIntroUrl($touchDomain)?>"><?=XString::truncate($intro, 60)?></a></p>
    <?php } 
    else
    {?>
        <p class="dis_con_ks mb5 lh140 gray3"><span class="pl10"><?=$intro ? $intro : "暫無科室介紹信息" ?></span></p>
    <?php } ?>
    </div>
      
    <div class="mt10 ml10 mr10 pt10 bg_w b_ra5 clearfix">
        <div class="icon_doc ml10 pl30 pb10 f17">科室醫生</div>
        <ul class="fl dis_list">
            <?include('_doctorlistcontent.php');?>
        </ul>
        <?php if($total>5){?>
               <p class="dis_all clear_b pt5 pb5"><a href="<?=$hospitalFaculty->getTouchFacultyDoctorListUrl($touchDomain)?>">查看全部<?=$totalDoctorCnt?>位</a></p>
      <?php }
       ?>
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:31,代碼來源:index.php

示例2:

<?php 
$intro = XString::delAllSpace($hospital->conclusion ? $hospital->conclusion : $hospital->intro);
$intro = htmlspecialchars_decode($intro); 
$intro = strip_tags($intro);
?>
<div class="ml10 mr10 bd bg_w b_ra3">
	<ul class="comp_intro clearfix">
        <li class="br_e">
            <?php 
            if ($intro) 
            { ?>
                <a href="<?=$hospital->getTouchInfoUrl($touchDomain)?>" class="int_icon2">醫院簡介</a>
            <?php 
            }
            else 
            { 
            ?>
                <a href="javascript:;" class="int_icon2 f_img">醫院簡介</a>
            <?php } ?>
        </li>
        <li class="br_e">
            <?php 
            if(trim($hospital->address) != "" || trim(nl2br($hospital->addressInfo)) != "") 
            { ?>
                <a href="<?=$hospital->getTouchAddressUrl($touchDomain)?>" class="int_icon3">交通路線</a>
            <?php 
            }
            else
            { 
            ?>
                <a href="javascript:;" class="int_icon3 f_img">交通路線</a>
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:31,代碼來源:_footer.php


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