以下是用于生成QR码的网址 https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=Example
当我在浏览器中输入URL时,它会返回一个图像。 如何将此图像存储在文件夹中
我正在使用cakephp
我在我的代码中尝试了这个但是它没有工作
$file = new File('https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=example');
$file->copy('../webroot/img/user_QR/');
答案 0 :(得分:3)
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);