CodeIgniter Forums
Where are the defines located? CI_VERSION - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Where are the defines located? CI_VERSION (/showthread.php?tid=17564)



Where are the defines located? CI_VERSION - El Forum - 04-08-2009

[eluser]RJ[/eluser]
Does anyone know where are the defines are located in CI?
Code:
<?php echo CI_VERSION ?>

Thanks


Where are the defines located? CI_VERSION - El Forum - 04-08-2009

[eluser]Jelmer[/eluser]
Not all constants are defined in the same place. APPPATH, FCPATH, BASEPATH, EXT and SELF for instance are defined in the index.php. Others are set in the constants.php config file in application/config.

The CI_VERSION constant is defined in the system/codeigniter/CodeIngiter.php file on line 31 in version 1.7.0.


Where are the defines located? CI_VERSION - El Forum - 04-08-2009

[eluser]RJ[/eluser]
Thanks @Jelmer