当前位置: 首页>>代码示例>>PHP>>正文


PHP HttpSocket::setContentResource方法代码示例

本文整理汇总了PHP中HttpSocket::setContentResource方法的典型用法代码示例。如果您正苦于以下问题:PHP HttpSocket::setContentResource方法的具体用法?PHP HttpSocket::setContentResource怎么用?PHP HttpSocket::setContentResource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HttpSocket的用法示例。


在下文中一共展示了HttpSocket::setContentResource方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: saveImage

 public function saveImage($isbn = null, $url = null)
 {
     if ($isbn == null || $url == null || $url == '') {
         return false;
     }
     $http = new HttpSocket();
     try {
         $f = fopen(WWW_ROOT . 'img' . DS . 'books' . DS . $isbn . '.png', 'w');
         $http->setContentResource($f);
         $http->get($url);
         fclose($f);
     } catch (Exception $e) {
         return false;
     }
     return 'books/' . $isbn . '.png';
 }
开发者ID:laiello,项目名称:double-l-bookmanagement,代码行数:16,代码来源:IsbnfuncComponent.php

示例2: __download_attachments

 private function __download_attachments()
 {
     //get HttpSocket
     App::uses('HttpSocket', 'Network/Http');
     //get Folder
     App::uses('Folder', 'Utility');
     //get user id
     $userId = AuthComponent::user('id');
     foreach ($this->__attachments as $attachment) {
         //generate Post model
         $Post = ClassRegistry::init('CloggyBlogPost');
         //generate Media model
         $Media = ClassRegistry::init('CloggyBlogMedia');
         $postId = '';
         foreach ($this->__posts as $post) {
             if ($attachment['post_id'] == $post['post_id']) {
                 $detailPost = $Post->getPostIdByTitle($post['title']);
                 if ($detailPost) {
                     $postId = $detailPost['CloggyNodeSubject']['node_id'];
                     break;
                 }
             }
         }
         /*
          * only if post id is not empty
          */
         if (!empty($postId)) {
             /*
              * generate data
              */
             $imageUrl = $attachment['url'];
             $exp = explode('.', $imageUrl);
             $ext = end($exp);
             $filename = $attachment['title'] . '.' . $ext;
             $path = APP . 'Plugin' . DS . 'Cloggy' . DS . 'webroot' . DS . 'uploads' . DS . 'CloggyBlog' . DS . 'images' . DS . $postId . DS;
             $filepath = $path . $filename;
             /*
              * create folder
              */
             $dir = new Folder();
             $dir->create($path);
             /*
              * download atttachment
              */
             $http = new HttpSocket();
             $f = fopen($filepath, 'w+');
             $http->setContentResource($f);
             $results = $http->get($imageUrl);
             fclose($f);
             /*
              * save image
              */
             $mediaId = $Media->setImage($userId, array('media_file_type' => $results->getHeader('Content-Type'), 'media_file_location' => DS . 'uploads' . DS . 'CloggyBlog' . DS . 'images' . DS . $postId . DS . $filename));
             //save new image
             $Media->setPostAttachment($postId, $mediaId);
         }
     }
 }
开发者ID:simaostephanie,项目名称:Cloggy,代码行数:58,代码来源:ImportWordPress.php


注:本文中的HttpSocket::setContentResource方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。