开发者

Changing User-Defined Global Variable Value in ExpressionEngine

开发者 https://www.devze.com 2023-02-21 23:48 出处:网络
Say I\'ve got a global variable which I\'m accessing inside a PHP block, which compare开发者_高级运维s to a querystring... if the comparison is true I want to set the value for a global EE variable so

Say I've got a global variable which I'm accessing inside a PHP block, which compare开发者_高级运维s to a querystring... if the comparison is true I want to set the value for a global EE variable so that all the other template pages can recognise that the value is not what it normally is - is this possible, or are the global user-defined variables constants?

Thanks, Dan


$this->EE->config->_global_vars['foo'] = 'bar';

But keep in mind that the variable may have already been parsed before you have a chance to change it, depending on where and how it's used (see EE2's parse order discusssion).


You can use the PHP $GLOBAL Superglobal Array, for such cases. Say you have written a variable in any block of a particular page as $a = 123;.
Now in the same page, but in another block, you can easily change it to something else as $GLOBALS['a'] = 456;.

Hope it helps.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号