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


PHP CondText函数代码示例

本文整理汇总了PHP中CondText函数的典型用法代码示例。如果您正苦于以下问题:PHP CondText函数的具体用法?PHP CondText怎么用?PHP CondText使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: CondExpr

function CondExpr($pagename, $condname, $condparm) {
  global $CondExprOps;
  SDV($CondExprOps, 'and|x?or|&&|\\|\\||[!()]');
  if ($condname == '(' || $condname == '[')
    $condparm = preg_replace('/[\\]\\)]\\s*$/', '', $condparm);
  $condparm = str_replace('&&', '&&', $condparm);
  $terms = preg_split("/(?<!\\S)($CondExprOps)(?!\\S)/i", $condparm, -1,
                      PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
  foreach($terms as $i => $t) {
    $t = trim($t);
    if (preg_match("/^($CondExprOps)$/i", $t)) continue;
    if ($t) $terms[$i] = CondText($pagename, "if $t", 'TRUE') ? '1' : '0';
  }
  return @eval('return(' . implode(' ', $terms) . ');');
}
开发者ID:BogusCurry,项目名称:pmwiki,代码行数:15,代码来源:pmwiki.php

示例2: PmFormTemplateRequires

function PmFormTemplateRequires($pagename, &$text, $args = NULL)
{
    if (!$args) {
        $args = array();
    }
    $errors = array();
    if (!PmFormTemplateDirective($text, "requires?", $match)) {
        return;
    }
    foreach ($match as $m) {
        $text = str_replace($m[0], '', $text);
        if ($args) {
            $m[2] = FmtTemplateVars($m[2], $args);
        }
        $opt = ParseArgs($m[2]);
        $opt[''] = (array) $opt[''];
        $name = isset($opt['name']) ? $opt['name'] : array_shift($opt['']);
        $match = '?*';
        if (isset($opt['match'])) {
            $match = $opt['match'];
        } else {
            if ($opt['']) {
                $match = array_shift($opt['']);
            }
        }
        list($inclp, $exclp) = GlobToPCRE($match);
        foreach (preg_split('/[\\s,]+/', $name, -1, PREG_SPLIT_NO_EMPTY) as $n) {
            $n = preg_replace('/^\\$:/', 'ptv_', $n);
            if ($match == '' && $args[$n] != '' || $inclp && !preg_match("/{$inclp}/is", $args[$n]) || $exclp && preg_match("/{$exclp}/is", $args[$n])) {
                $errors[] = isset($opt['errmsg']) ? $opt['errmsg'] : "\$[Invalid parameter] {$n}";
            }
        }
        if (@$opt['if'] && !CondText($pagename, 'if ' . $opt['if'], 'hello')) {
            $errors[] = isset($opt['errmsg']) ? $opt['errmsg'] : "\$[Required condition failed]";
        }
    }
    return $errors;
}
开发者ID:jefmud,项目名称:pmwiki-kit-bootstrap-compass,代码行数:38,代码来源:pmform.php


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