当前位置: 首页>>代码示例>>PHP>>正文


PHP clsTinyButStrong::f_Loc_EnlargeToTag方法代码示例

本文整理汇总了PHP中clsTinyButStrong::f_Loc_EnlargeToTag方法的典型用法代码示例。如果您正苦于以下问题:PHP clsTinyButStrong::f_Loc_EnlargeToTag方法的具体用法?PHP clsTinyButStrong::f_Loc_EnlargeToTag怎么用?PHP clsTinyButStrong::f_Loc_EnlargeToTag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在clsTinyButStrong的用法示例。


在下文中一共展示了clsTinyButStrong::f_Loc_EnlargeToTag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: meth_Locator_FindTbs

 function meth_Locator_FindTbs(&$Txt, $Name, $Pos, $ChrSub)
 {
     // Find a TBS Locator
     $PosEnd = false;
     $PosMax = strlen($Txt) - 1;
     $Start = $this->_ChrOpen . $Name;
     do {
         // Search for the opening char
         if ($Pos > $PosMax) {
             return false;
         }
         $Pos = strpos($Txt, $Start, $Pos);
         // If found => next chars are analyzed
         if ($Pos === false) {
             return false;
         } else {
             $Loc = new clsTbsLocator();
             $ReadPrm = false;
             $PosX = $Pos + strlen($Start);
             $x = $Txt[$PosX];
             if ($x === $this->_ChrClose) {
                 $PosEnd = $PosX;
             } elseif ($x === $ChrSub) {
                 $Loc->SubOk = true;
                 // it is no longer the false value
                 $ReadPrm = true;
                 $PosX++;
             } elseif (strpos(';', $x) !== false) {
                 $ReadPrm = true;
                 $PosX++;
             } else {
                 $Pos++;
             }
             $Loc->PosBeg = $Pos;
             if ($ReadPrm) {
                 clsTinyButStrong::f_Loc_PrmRead($Txt, $PosX, false, '\'', $this->_ChrOpen, $this->_ChrClose, $Loc, $PosEnd);
                 if ($PosEnd === false) {
                     $this->meth_Misc_Alert('', 'can\'t found the end of the tag \'' . substr($Txt, $Pos, $PosX - $Pos + 10) . '...\'.');
                     $Pos++;
                 }
             }
         }
     } while ($PosEnd === false);
     $Loc->PosEnd = $PosEnd;
     if ($Loc->SubOk) {
         $Loc->FullName = $Name . '.' . $Loc->SubName;
         $Loc->SubLst = explode('.', $Loc->SubName);
         $Loc->SubNbr = count($Loc->SubLst);
     } else {
         $Loc->FullName = $Name;
     }
     if ($ReadPrm and isset($Loc->PrmLst['comm'])) {
         $Loc->PosBeg0 = $Loc->PosBeg;
         $Loc->PosEnd0 = $Loc->PosEnd;
         $comm = $Loc->PrmLst['comm'];
         if ($comm === true or $comm === '') {
             $Loc->Enlarged = clsTinyButStrong::f_Loc_EnlargeToStr($Txt, $Loc, '<!--', '-->');
         } else {
             $Loc->Enlarged = clsTinyButStrong::f_Loc_EnlargeToTag($Txt, $Loc, $comm, false);
         }
     }
     return $Loc;
 }
开发者ID:prolin99,项目名称:mobile_view,代码行数:63,代码来源:tbs_class_php5.php


注:本文中的clsTinyButStrong::f_Loc_EnlargeToTag方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。