2

次のように、手動で作成された 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

特定の回答、または自分で書いたコードを修正する他の方法を得たいと思っています(あまり良くありません)。

ありがとうございました。

4

2 に答える 2

1

次のようなことを試してください:

PHP

$file = file_get_contents('regexhtml.html');
$html = new DOMDocument();
$html->loadHTMLFile('regexhtml.html');

$conditions = array();
$matches = array();

$ifs = $html->getElementsByTagName('cond');

foreach ($ifs as $if_s) {
     // If
     $ifs1 = $if_s->getElementsByTagName('if');

     $counter = 0;
     foreach ($ifs1 as $if_s1) {
        $conditions[count($conditions)]['if_'.$counter] = array(
            'condition' => $if_s1->getAttribute('condition'),
            'message' => trim($if_s1->nodeValue)
        );
        $counter++;
     }


     // Else-if
     $ifs2 = $if_s->getElementsByTagName('elseif');

     $counter = 0;
     foreach ($ifs2 as $if_s2) {
        $conditions[count($conditions)]['elseif_'.$counter] = array(
            'condition' => $if_s2->getAttribute('condition'),
            'message' => trim($if_s1->nodeValue)
        );
        $counter++;
     }

     // Else
     $ifs3 = $if_s->getElementsByTagName('else');

     $counter = 0;
     foreach ($ifs3 as $if_s3) {
        $conditions[count($conditions)]['else_'.$counter] = array(
            'message' => trim($if_s1->nodeValue)
        );
        $counter++;
     }
}

echo '<pre>';
print_r($conditions);
echo '</pre>';

いくつかの警告が表示されるのでerror_reporting('E_NONE');、無効な HTML 警告を無視してください。xHTML/HTML5 準拠のブラウザーを使用している限り、カスタム タグをサポートする必要があります。

HTML (regexhtml.html)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Title</title>
</head>
<body>
    <cond>
        <if condition="$a == $b">
            a is equal with b
        </if>
        <elseif condition="$a > $b">
            a is larger than b
        </elseif>
        <elseif condition="$a < $b">
            a is smaller than b
        </elseif>
        <else>
            a is smaller than b
        </else>
    </cond>
</body>
</html>

出力

Array
(
    [0] => Array
        (
            [if_0] => Array
                (
                    [condition] => $a == $b
                    [message] => a is equal with b
                )

        )

    [1] => Array
        (
            [elseif_0] => Array
                (
                    [condition] => $a > $b
                    [message] => a is equal with b
                )

        )

    [2] => Array
        (
            [elseif_1] => Array
                (
                    [condition] => $a < $b
                    [message] => a is equal with b
                )

        )

    [3] => Array
        (
            [else_0] => Array
                (
                    [message] => a is equal with b
                )

        )

)

これで、出力を好きなように処理できます。それを取り除いて、正規表現またはそれでやりたいことを何でもします。

PHP 変数 ( など) を一致させるには$a、スコープ操作が必要になる場合があります。

// These won't practically exist, but only as strings in the Array() object
$html_a1 = '12';
$html_b1 = '23';

// Storing the string-based code into new variables
$a1 = eval('return $html_a1;');
$b1 = eval('return $html_b1;');

echo eval('return $html_a1;').'<br /><br />';

if ($a1 == $b1) {
    echo 'a is equal with b';
}
elseif ($a1 > $b1) {
    echo 'a is larger than b';
}
elseif ($a1 < $b1) {
    echo 'a is smaller than b';
}
else {
    echo 'Something else';
}

ライブラリを使用すると、DOMDocument()必要に応じて結果を即座に書き戻すこともできるので ( http://www.php.net/manual/en/class.domdocument.php )、手動で HTML を再構築する必要はありません。このライブラリでは、操作された HTML を書き戻すこともできます。

幸運を!

于 2013-03-24T18:32:50.453 に答える
0

多分これはあなたを助けるでしょう、私は複数のパターンでpreg_replace()を使用しました、私はあなたが「HTMLファイル」を作成している人を信頼していると仮定しています:

$a = 5;
$b = 7;
$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>';

$new_html = preg_replace(array('/<if condition="(.*)">\s*(.*)/', '/<elseif condition="(.*)">\s*(.*)/', '/<\/if>/'), array('if($1){'.PHP_EOL.'echo "$2";', '}elseif($1){'.PHP_EOL.'echo "$2";', '}'), $html);
eval($new_html); // result
var_dump($new_html); // This is to view the "final" code
于 2013-03-24T18:33:58.277 に答える