次のように、手動で作成された html タグで if/else を評価するための正規表現パターンが必要です。
<if condition="$condition">
Return value if true
<else/>
Return value if false
</if>
そして、より具体的には:
<if condition="$condition">
Return value if true
<elseif condition="$another_condition"/>
Return value if the above is true
<elseif condition="$more_condition"/>
Return value if the above is true
<else/>
Return value if non of the above is true
</if>
基本的には、すべての「条件」の後方参照の戻り値と、htmlファイルへのphp変数出力の練習用の「戻り値」を取得したいです。例:
- 最初のものでは、$2 は $condition、$3 は true の場合の戻り値、$4 は false の場合です。
- 2 番目の $2 は $condition、$3 は true の場合、$4 は 2 番目の条件、$5 は上記の条件が一致した場合の戻り値などです。
認識できるパターンが必要です
<else/>
また
<else condition="blah">
または複数回出現して、適切に後方参照の値を返します。
これの目的は、php ファイル (事前定義された変数を含む) を使用して html テンプレートをインクルードし、直接使用せずに、php 変数に基づいて値を出力することです。
<?php if ($condition) { $result; } ?>
html テンプレート内。
例:
PHP ファイル:
<?php
function callback()
{
$precondition = eval('return ' . $matches[1] . ';');
// Prewritten function for parsing boolean from string
$condition = parse_boolean($precondition);
// Restrict result to boolean only
if (is_bool($condition))
{
// This need better coding based on multiple <elseif ../>
$ret = ($condition ? $matches[2] : $matches[4]);
}
return $ret;
}
$a = 5;
$b = 6;
$content = file_get_contents('/html/file/path.html');
$pattern = 'I need this pattern';
$output = preg_replace_callback($pattern, 'callback', $content);
echo $output;
?>
HTML ファイル:
<if condition="$a == $b">
a is equal with b
<elseif condition="$a > $b">
a is larger than b
<elseif condition="$a < $b">
a is smaller than b
</if>
PHP ファイルを実行すると、次のように出力されます。
a is smaller than b
特定の回答、または自分で書いたコードを修正する他の方法を得たいと思っています(あまり良くありません)。
ありがとうございました。