-3

我刚刚将我的图像导入到 opencart 中。我现在注意到 OpenCart 不能正确处理 PNG 图形,因为它使用静态压缩率,这对 JPG 效果很好,但最终无损压缩 PNG,这不是很好。

我现在已经将 png 图像转换为 Jpeg,但我想知道是否可以使用 MySql 替换图像名称。

有什么方法可以替换 URL 的图像链接。

4

1 回答 1

1
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);
于 2012-07-09T07:58:30.973 回答