DEV Community

Robert Look
Robert Look

Posted on

How To Check Codeigniter Version?

In this tutorial, we'll see how to check Codeigniter version in project you are using. Check Version is easy but would be a challenge for someone getting started with Codeigniter framework.

I was working in an application built on Codeigniter. CI looks like an earlier release but I'm not sure about the exact version of Codeigniter the application runs. So I started digging out and found the answers - turn out to be simple like I presumed. And I wish to share here the way I used to find Codeigniter version for your reference.

<?php
echo CI_VERSION;
?>

More Information: https://www.phpcodingstuff.com/blog/how-to-check-codeigniter-version.html

Top comments (0)