fork download
  1. <?php
  2. $regex = '/(?=<!--\sBEGIN\s(.*?)\s-->(.*?)(?=<!--\sEND\s(.*?)\s-->))/s';
  3. $string = '<!-- BEGIN switch legend -->
  4. <ul id="picture_legend">
  5. <li><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" />{L_NEW_POSTS}</li>
  6. <li><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" />{L_NO_NEW_POSTS}</li>
  7. <li><img src="{FORUM_LOCKED_IMG}" alt="{L_LOCKED}" />{L_LOCKED}</li>
  8. </ul>
  9. <!-- END switch legend -->
  10. <!-- BEGIN switch default -->
  11. <ul id="picture_legend">
  12. <li><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" />{L_NEW_POSTS}</li>
  13. <li><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" />{L_NO_NEW_POSTS}</li>
  14. <li><img src="{FORUM_LOCKED_IMG}" alt="{L_LOCKED}" />{L_LOCKED}</li>
  15. </ul>
  16. <!-- END switch default -->';
  17.  
  18. preg_match_all($regex,$string,$matches,PREG_OFFSET_CAPTURE|PREG_SET_ORDER);
  19. print_r($matches);
  20.  
  21.  
Success #stdin #stdout 0.02s 24144KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => Array
                (
                    [0] => 
                    [1] => 0
                )

            [1] => Array
                (
                    [0] => switch legend
                    [1] => 11
                )

            [2] => Array
                (
                    [0] => 
    <ul id="picture_legend">
	    <li><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" />{L_NEW_POSTS}</li>
	    <li><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" />{L_NO_NEW_POSTS}</li>
	     <li><img src="{FORUM_LOCKED_IMG}" alt="{L_LOCKED}" />{L_LOCKED}</li>
    </ul>

                    [1] => 28
                )

            [3] => Array
                (
                    [0] => switch legend
                    [1] => 308
                )

        )

    [1] => Array
        (
            [0] => Array
                (
                    [0] => 
                    [1] => 326
                )

            [1] => Array
                (
                    [0] => switch default
                    [1] => 337
                )

            [2] => Array
                (
                    [0] => 
    <ul id="picture_legend">
	    <li><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" />{L_NEW_POSTS}</li>
	    <li><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" />{L_NO_NEW_POSTS}</li>
	     <li><img src="{FORUM_LOCKED_IMG}" alt="{L_LOCKED}" />{L_LOCKED}</li>
    </ul>

                    [1] => 355
                )

            [3] => Array
                (
                    [0] => switch default
                    [1] => 635
                )

        )

)