Generating dynamic QR codes in CodeIgniter 4 can be achieved using various libraries. One of the most popular options is the PHP QR Code Library. Here's a step-by-step guide on how to generate a dynamic QR code in CodeIgniter 4, including storing QR code images on the server. You can add text content, Website URL( or any URL ), email, phone number, SMS, Business Card, and other info to the QR code and generate QR barcode images with Codeigniter Application.
Table Of Content
1 Prerequisites
1.) PHP version of 8.2
2.) PHP GD Extension
2 Introduction
A QR code (Quick Response code) is a type of 2D barcode used to store information. In this guide, we will demonstrate how to generate QR codes in CodeIgniter 4 dynamically, as well as provide examples for storing QR code images on the server.
3 Create / Install a Codeigniter 4 Project
3.1 Install Codeigniter 4 Project
Ensure your computer has Composer installed. Use the following command to set up a new project:
When we install CodeIgniter 4, we will have env file at root. To use the environment variables, we need to rename env to .env
Also we can do this in command Line.
Open project in Command Line
sudo cp env .env
PHP
Above command will create a copy of env file to .env file. Now we are ready to set environment variables.
Configure Development Mode
CodeIgniter starts up in production mode by default. You need to make it in development mode to debug or check any error if you are working with application.
Open .env file from root.
# CI_ENVIRONMENT = productionCI_ENVIRONMENT= development
PHP
Now application is in development mode.
4 Install the QR Code Library
To Install Qr Code library in CodeIgniter 4, Create a class file inside "/app/Libraries" directory.
Create a library file with name Ciqrcode.php class into /app/Libraries folder
Open Ciqrcode.php file and write this code into it.
<?phpdeclare(strict_types=1);namespaceApp\Libraries;useQRcode;useQRimage;usefunctionarray_filter;usefunctioncount;usefunctiondefine;usefunctiondefined;usefunctionin_array;usefunctionis_array;usefunctionmax;usefunctionmin;classCiqrcode{var$cacheable=true;var$cachedir=WRITEPATH.'cache/';var$errorlog=WRITEPATH.'logs/';var$quality=true;var$size=1024;function__construct($config=[]){includeAPPPATH.'/ThirdParty/qrcode/qrconst.php';includeAPPPATH.'/ThirdParty/qrcode/qrtools.php';includeAPPPATH.'/ThirdParty/qrcode/qrspec.php';includeAPPPATH.'/ThirdParty/qrcode/qrimage.php';includeAPPPATH.'/ThirdParty/qrcode/qrinput.php';includeAPPPATH.'/ThirdParty/qrcode/qrbitstream.php';includeAPPPATH.'/ThirdParty/qrcode/qrsplit.php';includeAPPPATH.'/ThirdParty/qrcode/qrrscode.php';includeAPPPATH.'/ThirdParty/qrcode/qrmask.php';includeAPPPATH.'/ThirdParty/qrcode/qrencode.php';$this->initialize($config);}publicfunctioninitialize($config=[]):void{$this->cacheable=$config['cacheable']??$this->cacheable;$this->cachedir=$config['cachedir']??$this->cachedir;$this->errorlog=$config['errorlog']??$this->errorlog;$this->quality=$config['quality']??$this->quality;$this->size=$config['size']??$this->size;// use cache - more disk reads but less CPU power, masks and format templates are stored thereif(!defined('QR_CACHEABLE')){define('QR_CACHEABLE',$this->cacheable);}// used when QR_CACHEABLE === trueif(!defined('QR_CACHE_DIR')){define('QR_CACHE_DIR',$this->cachedir);}// default error logs dirif(!defined('QR_LOG_DIR')){define('QR_LOG_DIR',$this->errorlog);}// if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality codeif($this->quality){if(!defined('QR_FIND_BEST_MASK')){define('QR_FIND_BEST_MASK',true);}}else{if(!defined('QR_FIND_BEST_MASK')){define('QR_FIND_BEST_MASK',false);}if(!defined('QR_DEFAULT_MASK')){define('QR_DEFAULT_MASK',$this->quality);}}// if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomlyif(!defined('QR_FIND_FROM_RANDOM')){define('QR_FIND_FROM_RANDOM',false);}// maximum allowed png image width (in pixels), tune to make sure GD and PHP can handle such big imagesif(defined('QR_PNG_MAXIMUM_SIZE')){return;}define('QR_PNG_MAXIMUM_SIZE',$this->size);}publicfunctiongenerate($params=[]){if(isset($params['black'])&&is_array($params['black'])&&count($params['black'])==3&&array_filter($params['black'],'is_int')===$params['black']){QRimage::$black=$params['black'];}if(isset($params['white'])&&is_array($params['white'])&&count($params['white'])==3&&array_filter($params['white'],'is_int')===$params['white']){QRimage::$white=$params['white'];}$params['data']=$params['data']??'QR Code Library';if(isset($params['savename'])){$level='L';if(isset($params['level'])&&in_array($params['level'],['L','M','Q','H'])){$level=$params['level'];}$size=4;if(isset($params['size'])){$size=min(max((int)$params['size'],1),10);}QRcode::png($params['data'],$params['savename'],$level,$size,2);return$params['savename'];}else{$level='L';if(isset($params['level'])&&in_array($params['level'],['L','M','Q','H'])){$level=$params['level'];}$size=4;if(isset($params['size'])){$size=min(max((int)$params['size'],1),10);}QRcode::png($params['data'],null,$level,$size,2);}}}?>
Here are some examples to generate Various types of QR code images using PHP.
1.URL QR Code: Specify the website URL, including the protocol:
Specify the website URL including the protocol (HTTP or HTTPS) to recognize the QR code as a URL.
Now create a controller "QrcodeController"
Create the controller using the following command:
phpspark make:controller QrcodeController
.properties
Inside the controller, define index and generate methods for handling QR code types such as URLs, phone numbers, SMS, and business cards. For instance, here’s how you can handle different QR code types dynamically:
app/Controllers/QrcodeController.php
<?phpnamespaceApp\Controllers;useApp\Controllers\BaseController;useCodeIgniter\HTTP\ResponseInterface;useApp\Libraries\Ciqrcode;classQrcodeControllerextendsBaseController{private$ciqrcode;publicfunction__construct(){$this->ciqrcode=newCiqrcode();}publicfunctionindex(){returnview('index');}publicfunctionstore(){$qrcode_type=$this->request->getVar("qrcode_type");if($qrcode_type==1||$qrcode_type==2)$data=$this->request->getVar("qr_code_content");elseif($qrcode_type==3)$data='tel:+'.$this->request->getVar("qr_phone_number");elseif($qrcode_type==4)$data='sms:'.$this->request->getVar("qr_sms_phone_number");elseif($qrcode_type==5)$data='mailto:'.$this->request->getVar("qr_email_email_id");elseif($qrcode_type==6)$data='mailto:'.$this->request->getVar("qr_email_extended_email_id").'?subject='.urlencode($this->request->getVar("qr_email_extended_subject")).'&body='.urlencode($this->request->getVar("qr_email_extended_message"));elseif($qrcode_type==7)$data='skype:'.urlencode($this->request->getVar("qr_skype_username")).'?call';elseif($qrcode_type==8){$data='BEGIN:VCARD'."\n";$data.='VERSION:3.0'."\n";$data.='N:'.$this->request->getVar("qr_business_card_first_name")."\n";$data.='FN:'.$this->request->getVar("qr_business_card_last_name")."\n";$data.='TEL;TYPE=cell:'.$this->request->getVar("qr_business_card_phone")."\n";$data.='EMAIL:'.$this->request->getVar("qr_business_card_email")."\n";$data.='ADR;TYPE=HOME;'.'LABEL="'.$this->request->getVar("qr_business_card_address")."\n";$data.='END:VCARD';}$hex_data=bin2hex($data);echo$save_name=$hex_data.'.png';/* QR Code File Directory Initialize */$dir='assets/media/qrcode/';if(!file_exists($dir)){mkdir($dir,0775,true);}/* QR Configuration */$config['cacheable']=true;$config['imagedir']=$dir;$config['quality']=true;$config['size']='1024';$config['black']=[255,255,255];$config['white']=[255,255,255];$this->ciqrcode->initialize($config);/* QR Data */$params['data']=$data;$params['level']='L';$params['size']=10;$params['savename']=FCPATH.$config['imagedir'].$save_name;$this->ciqrcode->generate($params);returnredirect()->to('qrcode')->with('qr_code_path',$config['imagedir'].$save_name);}}?>
PHP
7 Create Index View File
Create View "index.php" File to Show Form
app/Views/index.php
Visit the URL
http://localhost:8080/index.php/qrcode
11 Conclusion
This guide showed you how to dynamically generate a QR code in CodeIgniter 4 and provided an example of storing QR code images on the server. With the flexibility of the PHP QR Code Library, you can easily create different types of QR codes for your business or personal use.