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


PHP Json::has方法代碼示例

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


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

示例1: handler_ajax_todo_uncheck

 function handler_ajax_todo_uncheck($page)
 {
     S::assert_xsrf_token();
     if (Json::has('todo_id')) {
         XDB::execute('UPDATE  todo
                          SET  checked = 0
                        WHERE  uid = {?} AND todo_id = {?}', S::user()->id(), Json::i('todo_id'));
         if (XDB::affectedRows() != 1) {
             $page->jsonAssign('error', "Impossible de décocher la tâche");
         }
     } else {
         $page->jsonAssign('error', "Requête invalide");
     }
     return PL_JSON;
 }
開發者ID:netixx,項目名稱:frankiz,代碼行數:15,代碼來源:todo.php

示例2: handler_ajax_comment

 function handler_ajax_comment($page)
 {
     S::assert_xsrf_token();
     $g = Group::fromId(Json::i('gid'));
     if ($g) {
         $user = Json::has('uid') ? new User(Json::i('uid')) : S::user();
         if ($user->isMe(S::user()) || S::user()->hasRights($g, Rights::admin()) || S::user()->isWeb()) {
             $comments = Json::t('comments');
             $user->comments($g, $comments);
             $page->jsonAssign('uid', $user->id());
         }
     } else {
         $page->jsonAssign('error', "Ce groupe n'existe pas");
     }
     return PL_JSON;
 }
開發者ID:netixx,項目名稱:frankiz,代碼行數:16,代碼來源:groups.php

示例3: handler_ajax_modify

 function handler_ajax_modify($page)
 {
     S::assert_xsrf_token();
     if (!S::user()->hasRights(Group::from('qdj'), Rights::admin())) {
         return PL_FORBIDDEN;
     }
     $qdj = new QDJ(Json::i('id'));
     $page->jsonAssign('success', false);
     if (Json::has('date')) {
         $date = Json::t('date');
         if (!$date) {
             $qdj->date(false);
             $page->jsonAssign('success', true);
         } else {
             try {
                 $qdj->date(new FrankizDateTime($date));
                 $page->jsonAssign('success', true);
             } catch (Exception $e) {
             }
         }
     } else {
         if (Json::has('delete')) {
             if (Json::b('delete')) {
                 $qdj->delete();
                 $page->jsonAssign('success', true);
             }
         }
     }
     return PL_JSON;
 }
開發者ID:netixx,項目名稱:frankiz,代碼行數:30,代碼來源:qdj.php

示例4: handler_ajax_minimodules_layout

 function handler_ajax_minimodules_layout($page)
 {
     $layout = FrankizMiniModule::emptyLayout();
     foreach (array_keys($layout) as $col) {
         if (Json::has($col)) {
             $layout[$col] = Json::v($col);
         }
     }
     if (!S::user()->layoutMinimodules($layout)) {
         $page->jsonAssign('error', "Le réagencement des minimodules n'a pas pu se faire");
     }
     return PL_JSON;
 }
開發者ID:netixx,項目名稱:frankiz,代碼行數:13,代碼來源:profile.php


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