function example_static_variable in Coder 7
Same name and namespace in other branches
- 7.2 coder_upgrade/tests/old/samples/example.module \example_static_variable()
File
- coder_upgrade/
tests/ old/ samples/ example.module, line 174
Code
function example_static_variable() {
static $menu1;
static $menu2 = 2;
static $menu3 = array();
static $menu4 = 'xx';
}