Added array_walk snippet

This commit is contained in:
Michael Thessel 2013-04-12 02:57:14 +00:00
parent 2c858bb724
commit 8ec2e4ce7a

View File

@ -399,3 +399,7 @@ snippet am
${3}
return $$2;
}, $$1);
snippet aw
array_walk($${1:foo}, function(&$${2:v}, $${3:k}) {
$$2 = ${4};
});