01.
include
"phpqrcode/qrlib.php"
;
02.
03.
$tempDir
= dirname(
__FILE__
).DIRECTORY_SEPARATOR.
'image/QRCode'
.DIRECTORY_SEPARATOR;
04.
$codeContents
=
$_POST
[
'fa_link'
];
05.
$fileName
=
'005_file_'
.md5(
$codeContents
).
'.png'
;
06.
$pngAbsoluteFilePath
=
$tempDir
.
$fileName
;
07.
if
(!
file_exists
(
$pngAbsoluteFilePath
)) {
08.
QRcode::png(
$codeContents
,
$pngAbsoluteFilePath
);
09.
echo
'File generated!'
;
10.
echo
'<hr />'
;
11.
}
else
{
12.
echo
'File already generated! We can use this cached file to speed up site on common codes!'
;
13.
echo
'<hr />'
;
14.
}
15.
16.
echo
'Server PNG File: '
.
$pngAbsoluteFilePath
;
17.
echo
'<hr />'
;