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


PHP ajax::response方法代碼示例

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


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

示例1: autocomplete

 public function autocomplete()
 {
     $tags = array();
     $tag_parts = explode(",", Input::instance()->get("term"));
     $tag_part = ltrim(end($tag_parts));
     $tag_list = ORM::factory("tag")->where("name", "LIKE", Database::escape_for_like($tag_part) . "%")->order_by("name", "ASC")->limit(100)->find_all();
     foreach ($tag_list as $tag) {
         $tags[] = (string) html::clean($tag->name);
     }
     ajax::response(json_encode($tags));
 }
開發者ID:HarriLu,項目名稱:gallery3,代碼行數:11,代碼來源:tags.php

示例2: autocomplete

 public function autocomplete()
 {
     $directories = array();
     $path_prefix = Input::instance()->get("term");
     foreach (glob("{$path_prefix}*") as $file) {
         if (is_dir($file) && !is_link($file)) {
             $directories[] = (string) html::clean($file);
         }
     }
     ajax::response(json_encode($directories));
 }
開發者ID:HarriLu,項目名稱:gallery3,代碼行數:11,代碼來源:admin_server_add.php

示例3: autocomplete

 public function autocomplete()
 {
     $directories = array();
     $path_prefix = Input::instance()->get("q");
     foreach (glob("{$path_prefix}*") as $file) {
         if (is_dir($file) && !is_link($file)) {
             $directories[] = html::clean($file);
         }
     }
     ajax::response(implode("\n", $directories));
 }
開發者ID:JasonWiki,項目名稱:docs,代碼行數:11,代碼來源:admin_server_add.php

示例4: autocomplete

 public function autocomplete()
 {
     $tags = array();
     $tag_parts = explode(",", Input::instance()->get("q"));
     $limit = Input::instance()->get("limit");
     $tag_part = ltrim(end($tag_parts));
     $tag_list = ORM::factory("tag")->where("name", "LIKE", "{$tag_part}%")->order_by("name", "ASC")->limit($limit)->find_all();
     foreach ($tag_list as $tag) {
         $tags[] = html::clean($tag->name);
     }
     ajax::response(implode("\n", $tags));
 }
開發者ID:JasonWiki,項目名稱:docs,代碼行數:12,代碼來源:tags.php

示例5: autocomplete

 public function autocomplete()
 {
     $directories = array();
     $path_prefix = Input::instance()->get("q");
     foreach (glob("{$path_prefix}*") as $file) {
         if (is_dir($file) && !is_link($file)) {
             $file = html::clean($file);
             $directories[] = $file;
             // If we find an embed.php, include it as well
             if (file_exists("{$file}/embed.php")) {
                 $directories[] = "{$file}/embed.php";
             }
         }
     }
     ajax::response(implode("\n", $directories));
 }
開發者ID:JasonWiki,項目名稱:docs,代碼行數:16,代碼來源:admin_g2_import.php


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