imagecreatefrom_png_jpeg..()打开不同格式图片会出错
解决方法:imagecreatefromstring(file_get_contents('图片地址'))
解决方法:imagecreatefromstring(file_get_contents('图片地址'))
mysql中查询一个字段具体是属于哪一个数据库的那一张表:用这条语句就能查询出来,其中 table_schema 是所在库, table_name 是所在表select table_schema,table_name from information_schema.columns where column_name = '字段名'
将文件链接地址转为blob
fetch('https://blog.csdn.net').then(res => res.blob()).then(blob => {
const a = document.createElement('a')
a.href = URL.createObjectURL(blob)
console.log(a.href)
a.download = '' // 下载文件的名字
document.body.appendChild(a)
a.click()})
一、命令行安装稳定版ThinkPHP
composer create-project topthink/think tp
目前暂时没有找出是什么原因导致的,但是可以解决:
在目录下mobilevendorLibraryThink的Verify.class.php文件是控制验证码生成的,这个是移动端的验证码生成文件,我们需要在mobileappModulesCaptchaControllers里面的indexController.php的$verify = new \Think\Verify($params);加上ob_end_clean();ob_clean();即可