使用cakephp和mongodb添加图像文件

时间:2012-08-13 08:34:12

标签: mongodb cakephp-2.2

我是mongodb的新用户,我正在使用cakephp。我正试图从ichikaway测试cakephp的插件。这个插件允许cakephp使用mongodb(NoSql数据库)。所以,我想知道是否有人已经尝试过上传图片?

2 个答案:

答案 0 :(得分:0)

cakephp-mongodb库似乎没有提供与GridFS进行交互的API。您最好的选择是使用MongodbSource::getMongoDb()方法获取MongoDB实例,然后直接访问MongoGridFS类。 PHP文档包括几个用于将文件(包括上载的文件)存储到GridFS的示例。

答案 1 :(得分:0)

我试试这个并且有效!

     <?php

      class ProductsController extends AppController {
       public $name = 'Products';


       public function add(){
      if ($this->request->is('post')){
        debug($this->request->data);
        $dir = IMAGES.date('Y');
        if (!file_exists($dir))
            mkdir($dir);
        $dir .= DS.date('m');
        if (!file_exists($dir))
            mkdir($dir);
        $f = explode('.', $this->request->data['Product']['file']['name']);
        $ext = '.'.end($f);
        $filename = Inflector::slug(implode('.',array_slice($f,0,-1)),'-');
        debug($ext);
        debug($filename);

        $data = array(
            'name' => $this->request->data['Product']['name'],
            'url' => date('Y').'/'.date('m').'/'.$filename.$ext
            );
        //debug($data);
        if ($this->Product->save($data)){
            move_uploaded_file($this->request->data['Product']['file']['tmp_name'], $dir.DS.$filename.$ext);
            $id = $this->Product->getInsertId();
            debug($id);
        }
    }
}