2021年12月
imagecreatefrom_png_jpeg..()打开不同格式图片会出错
解决方法:imagecreatefromstring(file_get_contents('图片地址'))
mysql中查询一个字段属于哪一个数据库中的哪一个表的方式
mysql中查询一个字段具体是属于哪一个数据库的那一张表:用这条语句就能查询出来,其中 table_schema 是所在库, table_name 是所在表select table_schema,table_name from information_schema.columns where column_name = '字段名'