remoteConfig.php 948 B

123456789101112131415161718192021
  1. <?php
  2. if (!defined('IS_INITPHP')) exit('Access Denied!');
  3. /**
  4. * 用于在配置流的列表
  5. * 命名规则 I和D要注册大小写
  6. * 命名规则 I_name I是通过URL获取内容
  7. * 命名规则 D_name D是通过上一条数据获取内容 verifi
  8. * 'demo' => array(
  9. '{"nodeType":"data|pass|if|verifi",parameter:"[para1,pa]","resultType":"autoid|entity|boolean|return|list","sqlType":"select|update|insert|delete","sqlString":"select hospitalId,hospitalName,hospLevel,hospPhoto,favoriteNum,commentNum from hzremote.hz_hospitalinfo where status =0"}'
  10. ),
  11. * nodeType:pass 为验证如果返回结果为空则可以进入下一步
  12. * nodeType:if 如为if 在parameter里只能有一个为IF|参数 sqlString sql语句里 <if>条件</if>
  13. * "nodeType":"verifi" 如果节点为verifi 那就执行下面两条语句,一个节点返回true的执行,一个节点返回为false的执行
  14. *
  15. */
  16. $remoteConfig = array(
  17. );
  18. ?>