Hi,
I usually use the PHP alternative syntax to render webpage and it's always difficult to find the end or the begining of a block especially for huge blocks.
That would be great if PhpEd could help à little bit as it does for the matching bracket feature.
Ex :
<?php
$foo = array('a', 'b', 'c')
?>
<div id="foo">
<?php foreach($foo as $id): ?>
<p>New id : <?php echo $id; ?></p>
<?php endforeach; ?>
</div>
|
See here :
http://fr2.php.net/manual/en/control-structures.alternative-syntax.php
Interested ?