1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
====================
no interpolated text
====================
<?php
echo "hi";
---
(program
(php_tag)
(echo_statement (encapsed_string (string_content))))
===============================
interpolated text at beginning
===============================
<div>
<?php
echo "hi";
---
(program
(text)
(php_tag)
(echo_statement (encapsed_string (string_content))))
===============================
interpolated text at end
===============================
<?php
echo "hi";
?>
<div>
---
(program
(php_tag)
(echo_statement (encapsed_string (string_content)))
(text_interpolation (php_end_tag) (text)))
===============================
interpolated text in middle
===============================
<?php
echo "hi";
?>
<div>
<?php
echo "bye";
?>
---
(program
(php_tag)
(echo_statement (encapsed_string (string_content)))
(text_interpolation
(php_end_tag)
(text)
(php_tag))
(echo_statement (encapsed_string (string_content)))
(text_interpolation (php_end_tag)))
==============================
short open tag: On
==============================
<?
echo "Used a short tag\n";
?>
Finished
---
(program
(php_tag)
(echo_statement (encapsed_string (string_content) (escape_sequence)))
(text_interpolation (php_end_tag) (text)))
==============================
short open tag: Off
==============================
<div>one</div>
<?php
$a = 'This gets echoed twice';
?>
<?= $a ?>
<div>two</div>
<? $b=3; ?>
<?php
echo "{$b}";
?>
<?= "{$b}" ?>
---
(program
(text)
(php_tag)
(expression_statement (assignment_expression (variable_name (name)) (string (string_content))))
(text_interpolation (php_end_tag) (php_tag))
(expression_statement (variable_name (name)))
(text_interpolation (php_end_tag) (text) (php_tag))
(expression_statement (assignment_expression (variable_name (name)) (integer)))
(text_interpolation (php_end_tag) (php_tag))
(echo_statement (encapsed_string (variable_name (name))))
(text_interpolation (php_end_tag) (php_tag))
(expression_statement (encapsed_string (variable_name (name))))
(text_interpolation (php_end_tag)))
======================
Single line php comment
======================
<ul class="foo"><?php // this is a comment ?></ul>
<?php
// foo?
// foo? bar?
echo "hi";
---
(program
(text)
(php_tag)
(comment)
(text_interpolation (php_end_tag) (text) (php_tag))
(comment)
(comment)
(echo_statement (encapsed_string (string_content))))
=======================================
Single line comment without any content
=======================================
<?php
# Check if PHP xml isn't compiled
#
if ( ! function_exists('xml_parser_create') ) {
echo $test;
}
---
(program
(php_tag)
(comment)
(comment)
(if_statement
condition: (parenthesized_expression
(unary_op_expression
argument: (function_call_expression
function: (name)
arguments: (arguments (argument (string (string_content)))))))
body: (compound_statement (echo_statement (variable_name (name))))))
=====================================
Closing tags before the first PHP tag
=====================================
a ?> b <?php c;
---
(program
(text)
(php_tag)
(expression_statement
(name)))
====================================
WordPress colon blocks
====================================
<?php
if ($post) :
?>
<?php
if ( $open ) {
$attachment_id;
}
?>
<?php
else :
$post;
endif;
?>
---
(program
(php_tag)
(if_statement
condition: (parenthesized_expression (variable_name (name)))
body: (colon_block
(text_interpolation (php_end_tag) (php_tag))
(if_statement
condition: (parenthesized_expression (variable_name (name)))
body: (compound_statement (expression_statement (variable_name (name))))
)
)
(text_interpolation (php_end_tag) (php_tag))
alternative: (else_clause
body: (colon_block
(expression_statement (variable_name (name)))
)
)
)
(text_interpolation (php_end_tag))
)
===============================
octothorpe immediately after text interpolation
===============================
<a href="<?=$url?>#intro">Intro</a>
---
(program
(text)
(php_tag)
(expression_statement
(variable_name (name)))
(text_interpolation (php_end_tag) (text)))
|