InfiQr codeigniter
1.0.0
مكتبة مولد InfiQR Qrcode لـ PHP codeigniter
// Load library in your controller
$this->load->library('infiqr');
// Call Infiqr and pass the content to simply generate image output in your controller
$this->infiqr->generate('Hello, testing qr code');
محتويات
$phoneNo = '(049)012-345-678';
// we building raw data
$codeContents = 'tel:'.$phoneNo;
$this->load->library('infiqr');
$this->infiqr->generate(codeContents);
$email='[email protected]';
$codeContents = 'mailto:'.$email;
// here our data
$name = 'John Doe';
$phone = '(049)012-345-678';
// we building raw data
$codeContents = 'BEGIN:VCARD'."n";
$codeContents .= 'FN:'.$name."n";
$codeContents .= 'TEL;WORK;VOICE:'.$phone."n";
$codeContents .= 'END:VCARD';
Source : -
This Library was built using [PHPqrcode](http://phpqrcode.sourceforge.net/examples/index.php?example=025).
لا تتردد في مراسلتي عبر البريد الإلكتروني إذا كان لديك أي مشاكل.
شكرًا، - نسيم فصال نسيم في infiyo dot com / @naseemfasal