This website requires JavaScript.
Explore
Help
Sign In
danog
/
parser
Watch
1
Star
0
Fork
0
You've already forked parser
mirror of
https://github.com/danog/parser.git
synced
2024-12-04 18:38:11 +01:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
b254e59bde
parser
/
phpast
/
samples
/
if.php
11 lines
130 B
PHP
Raw
Normal View
History
Unescape
Escape
parser: support else statements
2022-07-26 12:48:37 +02:00
<
?
php
if
(
$foo
)
{
return
$foo
;
parser: support else if statements
2022-07-26 14:39:22 +02:00
}
elseif
(
$foo
)
{
return
$foo
;
}
elseif
(
$foo
)
{
return
$foo
;
parser: support else statements
2022-07-26 12:48:37 +02:00
}
else
{
return
$foo
;
}
Reference in New Issue
Copy Permalink