#Confirmé avec CentOS 6(Pas dans CentOS 5)
yum install -y qrencode
# Ubuntu 20.Confirmé à 04
apt install -y qrencode
Lors de la création d'une image
qrencode -o a.png "http://qiita.com"
Lors de la sortie vers le terminal
qrencode -t ansi "http://qiita.com"
qr.php
<?php
function echo_qrcode($str) {
$command = sprintf('/usr/bin/qrencode "%s" -o -', $str);
$qrcode = `$command`;
header("Content-type: image/png");
echo $qrcode;
}
echo_qrcode("https://www.google.com/search?client=ubuntu&hs=M8b&channel=fs");
Recommended Posts