Skip to content

Instantly share code, notes, and snippets.

@Codenator81
Created June 18, 2014 09:05
Show Gist options
  • Save Codenator81/b450ec19bbe8fa033b01 to your computer and use it in GitHub Desktop.
Save Codenator81/b450ec19bbe8fa033b01 to your computer and use it in GitHub Desktop.
MODX теги
<?php
// snippet foreach
$array = array(
"foo" => "bar",
"bar" => "foo",
100 => -100,
200 => 100,
);
foreach ($array as $key => $value){
echo '[[$foreach? &key=`'.$key.'` , &value=`'.$value.'`]]';
}
//chunk foreach
<li>[[+key]] - [[+value]]</li>
// templates 10000 times
[[*content]]
[[foreach]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment