当前位置: 首页>>代码示例>>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;未经允许,请勿转载。