Resource.php
356 字节
<?php
namespace app\common\controller;
use tinymeng\code\Generate;
class Resource
{
public static function StudyBar($id){
$generate = Generate::qr();
/** 直接输出图片 */
$file_path = $generate->create($id,true);
$file_path = substr($file_path,strripos($file_path,"public")+6);
return $file_path;
}
}