Пример #1
0
    
    <?php 
foreach ($notations as $notation) {
    $aspects = $parser->getNotationAttributes($notation);
    ?>

        <tr>
            <td>
                <pre><?php 
    var_dump(htmlentities($notation));
    ?>
</pre>
            </td>
            <td align="center">
                <?php 
    echo htmlentities($parser->getNotationValue($notation));
    ?>
            </td>
            <td align="center">
                <?php 
    echo $parser->getNotationType($notation);
    ?>
            </td>
            <td>
                <pre><?php 
    var_dump($aspects);
    ?>
</pre>
            </td>
        </tr>
    <?php 
Пример #2
0
        <th>Type</th>
        <th>Column</th>
    </tr>
    
    <?php 
foreach ($notations as $notation) {
    ?>
        <tr>
            <td>
                <?php 
    var_dump($notation);
    ?>
            </td>
            <td align="center">
                <?php 
    echo $parser->getNotationValue($notation);
    ?>
            </td>
            <td align="center">
                <strong><?php 
    echo $parser->getNotationType($notation);
    ?>
</strong>
            </td>
            <td>
                <pre><?php 
    echo var_dump($parser->getNotationAttributes($notation));
    ?>
</pre>
            </td>
        </tr>