QR码图像生成器
QR Code Image Generator
我正在使用来自 http://goqr.me/api/
的二维码生成器 api下面是用来生成二维码的URL https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=Example
当我在浏览器中输入 URL 时,它 returns 给我一张图片。 如何将此图像存储在文件夹中
我正在使用 cakephp
我在我的代码中试过了,但它不起作用
$file = new File('https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=example');
$file->copy('../webroot/img/user_QR/');
Read the documentation 想出这样简单的事情。
$qrData = file_get_contents('https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=example');
$file = new File('path/to/the-file.jpg', true);
$file->write($qrData);