本文整理汇总了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) . ');');
}
示例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;
}