...

Text file src/github.com/alecthomas/chroma/lexers/testdata/phtml.actual

Documentation: github.com/alecthomas/chroma/lexers/testdata

     1<!DOCTYPE html>
     2<html>
     3<body>
     4
     5<h1>My first PHP page</h1>
     6<?php
     7
     8$docs = $modx->getIterator('modResource', ["parent" => 84]);
     9
    10foreach($docs as $doc){
    11    $q=$doc->content;
    12    $doc->set("content", preg_replace("/Some value/i", "Replacement", $q));
    13    print_r($doc->content);
    14    // $doc->save();
    15} 
    16// some comment
    17?>
    18</body>
    19</html>

View as plain text