我需要在Codeigniter上传中更改宽度和高度值:
我的代码:
$config["image_library"] = "gd2";
$config["source_image"] = $nomedestino;
$config["width"] = 150;
$config["height"] = 150;
我需要使用mysql数据库中的大小来更改width-height的值。
示例:
$teste = $this->dbmodel->banner_width();
$teste2 = $this->dbmodel->banner_height();
$config["width"] = $teste;
$config["height"] = $teste2;
谢谢您的帮助!