-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
810f4a6
commit acb69d0
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
codeigniter/versionsnummer-von-codeigniter-ermitteln/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Versionsnummer von CodeIgniter ermitteln | ||
--- | ||
|
||
## Versionsnummer von CodeIgniter ermitteln | ||
|
||
Die Versionsnummer des aktuell verwendetetn CodeIgniter Frameworks steht über die PHP-Konstante `CI_VERSION` zur Verfügung. | ||
|
||
### Beispiel #1 - Versionsnummer des CodeIgniter Frameworks ausgeben | ||
|
||
```php | ||
<?php echo CI_VERSION; ?> | ||
``` | ||
|
||
## Weiterführende Informationen | ||
|
||
- [CodeIgniter User Guide - Reserved Names](https://codeigniter.com/user_guide/general/reserved_names.html){:target="_blank"} |