Welcome Guest, Not a member yet? Register   Sign In
Global Variable?
#3

If you need this like a global then use the static keyword.

PHP Code:
class A_Controller extends CI_Controller {

 
 protected static $global 0;

 
 public function __construct(){
 
   parent::__construct();
 
 }

 
 public function setGlobal($value){
 
   self::$global $value;
 
   $this->index();
 
 }

 
 public function index(){
 
   echo self$global;
 
 }


What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Global Variable? - by Hasan Al-Haddad - 09-23-2018, 04:57 PM
RE: Global Variable? - by salain - 09-23-2018, 10:11 PM
RE: Global Variable? - by InsiteFX - 09-24-2018, 05:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB