Answers for "print php variable in codeigniter controller"

PHP
0

access config variable in codeigniter controller

// config.php
$config['foo'] = 'bar';

// controller
$this->config->item('foo');
Posted by: Guest on March-15-2021
0

dump all variable in view codeigniter

var_dump($this->_ci_cached_vars);
Posted by: Guest on January-07-2022

Code answers related to "print php variable in codeigniter controller"

Browse Popular Code Answers by Language