此儲存庫已於 2025-08-22 封存。您可以查看檔案並進行 Clone,但無法推送或開啟問題或合併請求。
Files
dumbo/vendor/nikic/php-parser/test/code/parser/stmt/loop/while.test
2014-11-25 16:42:40 +01:00

25 行
307 B
Plaintext

While loop
-----
<?php
while ($a) {}
while ($a):
endwhile;
-----
array(
0: Stmt_While(
cond: Expr_Variable(
name: a
)
stmts: array(
)
)
1: Stmt_While(
cond: Expr_Variable(
name: a
)
stmts: array(
)
)
)