Lines Matching full:lines
50 protected function identifyHtml($line, $lines, $current) argument
60 $gtPos = strpos($lines[$current], '>');
61 $spacePos = strpos($lines[$current], ' ');
77 * Consume lines for an HTML block
79 protected function consumeHtml($lines, $current) argument
82 if (strncmp($lines[$current], '<!--', 4) === 0) { // html comment
83 for ($i = $current, $count = count($lines); $i < $count; $i++) {
84 $line = $lines[$i];
91 …$tag = rtrim(substr($lines[$current], 1, min(strpos($lines[$current], '>'), strpos($lines[$current…
96 for ($i = $current, $count = count($lines); $i < $count; $i++) {
97 $line = $lines[$i];