kohana 3 不使用任何模块上传图像?

发布于 2024-10-25 19:22:42 字数 337 浏览 3 评论 0原文

有人有在 kohana 3 中上传图像而不最终使用任何模块的示例吗?

我用了 https://github.com/kohana/image/tree/3.1%2Fmaster 但我的错误是: Fatal error: Uncaught Kohana_Exception [ 0 ]: Installed GD does not support images

有没有简单快捷的方法可以在基于 kohana 3 的网站上上传文件?

谢谢!

does anybody have an example of uploading images in kohana 3 without using any modules eventually ?

i used https://github.com/kohana/image/tree/3.1%2Fmaster but my error is: Fatal error: Uncaught Kohana_Exception [ 0 ]: Installed GD does not support images

is there any easy and fast way to upload files in a kohana 3 based website?

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枫林﹌晚霞¤ 2024-11-01 19:22:42

Kohana API 应该有所帮助。

基本步骤是:

  1. 创建验证对象 ($array = Validation::factory($_FILES);)
  2. 定义规则 ($array->rule('file', 'Upload::not_empty ')->rule('file', 'Upload::type', array(array('jpg', 'png', 'gif')));)
  3. 检查文件 (if ($array->check()))
  4. 并保存 ($filepath = Upload::save($_FILES['file'], 'uploaded_file', 'upload_dir');< /代码>)

Kohana API should help.

Basic steps are:

  1. Create Validation object ($array = Validation::factory($_FILES);)
  2. Define rules ($array->rule('file', 'Upload::not_empty')->rule('file', 'Upload::type', array(array('jpg', 'png', 'gif')));)
  3. Check file(s) (if ($array->check()))
  4. And save it ($filepath = Upload::save($_FILES['file'], 'uploaded_file', 'upload_dir');)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文