TP5 基于bootstrap实现多图上传插件

前端之家收集整理的这篇文章主要介绍了TP5 基于bootstrap实现多图上传插件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1----引入js文件和css文件

nofollow" rel="stylesheet"> 2-HTML代码
上传

3-控制器

file("path"); foreach ($arryFile as $File){ $pathImg=""; //移动文件到框架应用更目录的public/uploads/ $info = $File->move(ROOT_PATH . 'public' . DS . 'upload' . DS . 'top_bar' . DS . date('Y') . DS . date('m-d'),md5(microtime(true))); if ($info) { $pathImg = "/public/upload/top_bar/" . date('Y') . '/' . date('m-d') . '/' . $info->getFilename(); } else { //错误提示用户 return $this->error($File->getError()); } $result["path"] = $pathImg; $result["top_bar_id"]=$dataId; Db::name('top_path')->insert($result); }

总结

以上所述是小编给大家介绍的TP5 基于bootstrap实现多图上传插件,希望对大家有所帮助。程序员遇到问题都会上(编程之家jb51.cc)查找问题解答方法!如果觉得站点还不错,随手转发给程序员朋友一下!

原文链接:https://www.f2er.com/php/15852.html

猜你在找的PHP相关文章