當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Http::attach方法代碼示例

本文整理匯總了PHP中Http::attach方法的典型用法代碼示例。如果您正苦於以下問題:PHP Http::attach方法的具體用法?PHP Http::attach怎麽用?PHP Http::attach使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Http的用法示例。


在下文中一共展示了Http::attach方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: handler

 /**
  * package serverを立ち上げる
  *
  * @param string $package_root パッケージ名
  */
 public static function handler($package_root = null)
 {
     if (empty($package_root) || Rhaco::path() == "") {
         $debug = debug_backtrace();
         $first_action = array_pop($debug);
         if ($package_root === null) {
             $package_root = basename(dirname($first_action["file"]));
         }
         if (Rhaco::path() == "") {
             Rhaco::init($first_action["file"]);
         }
     }
     $base_dir = Rhaco::path();
     $request = new Request();
     $package_root_path = str_replace(".", "/", $package_root);
     $preg_quote = (empty($package_root_path) ? "" : preg_quote($package_root_path, "/") . "\\/") . "(.+)";
     $tag = new Tag("rest");
     if (preg_match("/^\\/state\\/" . $preg_quote . "\$/", $request->args(), $match)) {
         $tag->add(new Tag("package", $match[1]));
         if (self::parse_package($package_root_path, $base_dir, $match[1], $tgz_filename)) {
             $tag->add(new Tag("status", "success"));
             $tag->output();
         }
     } else {
         if (preg_match("/^\\/download\\/" . $preg_quote . "\$/", $request->args(), $match)) {
             if (self::parse_package($package_root_path, $base_dir, $match[1], $tgz_filename)) {
                 Http::attach(new File($tgz_filename));
             }
         }
     }
     Http::status_header(403);
     $tag->add(new Tag("status", "fail"));
     $tag->output();
     exit;
 }
開發者ID:hisaboh,項目名稱:w2t,代碼行數:40,代碼來源:Packager.php

示例2: handler

 /**
  * install serverを立ち上げる
  *
  * @param string $package_root パッケージ名
  */
 public static function handler()
 {
     $base_dir = Rhaco::path();
     $request = new Request();
     $tag = new Tag("rest");
     if (preg_match("/^\\/state\\/(.+)\$/", $request->args(), $match)) {
         $tag->add(new Tag("package", $match[1]));
         if (self::parse_package($base_dir, $match[1], $tgz_filename)) {
             $tag->add(new Tag("status", "success"));
             $tag->output();
         }
     } else {
         if (preg_match("/^\\/download\\/(.+)\$/", $request->args(), $match)) {
             if (self::parse_package($base_dir, $match[1], $tgz_filename)) {
                 Http::attach(new File($tgz_filename));
             }
         }
     }
     Http::status_header(403);
     $tag->add(new Tag("status", "fail"));
     $tag->output();
     exit;
 }
開發者ID:hisaboh,項目名稱:w2t,代碼行數:28,代碼來源:Repository.php

示例3: attach_text

 /**
  * 文字列からattachする
  * @param string $path
  * @param string $filename
  */
 public function attach_text($src, $filename = null)
 {
     Http::attach(new File($filename, $src));
     exit;
 }
開發者ID:hisaboh,項目名稱:w2t,代碼行數:10,代碼來源:Flow.php

示例4: attach_text

 /**
  * 文字列からattachする
  * @param string $path
  * @param string $filename
  */
 protected final function attach_text($src, $filename = null)
 {
     Http::attach(new File($filename, $src));
     exit;
 }
開發者ID:satully,項目名稱:dev_socialapp,代碼行數:10,代碼來源:Flow.php

示例5: dl

 private static function dl($filename)
 {
     Object::C(__CLASS__)->call_module("repository_download", $filename);
     if (self::is_remote()) {
         Http::redirect($filename);
     }
     Http::attach(new File($filename));
 }
開發者ID:satully,項目名稱:dev_socialapp,代碼行數:8,代碼來源:Repository.php


注:本文中的Http::attach方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。