snippets
Snippet |
Output |
def |
define() |
ifend |
if(): endif; |
ifelseend |
if(): else: endif; |
ifelseifend |
if(): elseif(): else: endif; |
if |
if(){} |
ifelse |
if(){}else{} |
ifelseif |
if(){}elseif(){}else{} |
foreachend |
foreach(): endforeach; |
forend |
for(): endfor; |
whileend |
while(): endwhile; |
dowhile |
do while(); |
switch |
switch |
$G |
$_GLOBALS[''] |
$se |
$_SERVER[""] |
$r |
$_REQUEST[""] |
$p |
$_POST[""] |
$g |
$_GET[""] |
$f |
$_FILES[""] |
$e |
$_ENV[""] |
$c |
$_COOKIE[""] |
$s |
$_SESSION[""] |
date |
date("",) |
in |
include ""; |
req |
require ""; |
function |
function () {} |
| |