add setter and getter

This commit is contained in:
chrisyue 2012-07-30 16:19:03 +08:00
parent 3508130a21
commit faa4bb490e

View File

@ -26,7 +26,7 @@ snippet i
${2} ${2}
} }
snippet $t snippet $t
$this->${1:foo}${2} $this->${1}
snippet f snippet f
function ${1:foo}(${2:array }${3:$bar}) function ${1:foo}(${2:array }${3:$bar})
{ {
@ -56,6 +56,12 @@ snippet gm
{ {
return $this->${3:$2}; return $this->${3:$2};
} }
#setter
snippet $s
${1:$foo}->set${2:Bar}(${3});
#getter
snippet $g
${1:$foo}->get${2:Bar}();
snippet C snippet C
$_COOKIE['${1:variable}']${2} $_COOKIE['${1:variable}']${2}
snippet E snippet E