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


PHP property_check函数代码示例

本文整理汇总了PHP中property_check函数的典型用法代码示例。如果您正苦于以下问题:PHP property_check函数的具体用法?PHP property_check怎么用?PHP property_check使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: extract

                 extract($tmp);
             }
         }
         include tpl('edit', $module);
     }
     break;
 case 'edit':
     $itemid or msg();
     $do->itemid = $itemid;
     if ($submit) {
         if ($do->pass($post)) {
             if ($FD) {
                 fields_check($post_fields);
             }
             if ($CP) {
                 property_check($post_ppt);
             }
             if ($FD) {
                 fields_update($post_fields, $table, $do->itemid);
             }
             if ($CP) {
                 property_update($post_ppt, $moduleid, $post['catid'], $do->itemid);
             }
             $do->edit($post);
             dmsg('修改成功', $forward);
         } else {
             msg($do->errmsg);
         }
     } else {
         $item = $do->get_one();
         extract($item);
开发者ID:hiproz,项目名称:zhaotaoci.cc,代码行数:31,代码来源:index.inc.php

示例2: property_check

                 }
                 if ($match[1] == strtoupper('MODULE_' . $module_name . '_DESCRIPTION')) {
                     $english_description = $match[2];
                 }
             }
         }
     }
 }
 // 必須プロパティのチェック
 $indispensableBAD = false;
 $indispensableBAD |= property_check($class, "title");
 $indispensableBAD |= property_check($class, "description");
 $indispensableBAD |= property_check($class, "author_email");
 $indispensableBAD |= property_check($class, "version");
 $indispensableBAD |= property_check($class, "require_zen_cart_version");
 $indispensableBAD |= property_check($class, "require_addon_modules_version");
 // エラーがない場合追加
 if ($indispensableBAD == false) {
     $a_addon_module['class'] = $module_name;
     unset($a_addon_module['author']);
     if (isset($class->author) && $class->author != "") {
         if (is_array($class->author)) {
             foreach ($class->author as $value) {
                 $a_addon_module['author'][] = output_protected($value);
             }
         } else {
             $a_addon_module['author'] = array(output_protected($class->author));
         }
     } else {
         $a_addon_module['author'] = array(output_protected($class->author_email));
     }
开发者ID:homework-bazaar,项目名称:zencart-sugu,代码行数:31,代码来源:make_module_list.php


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