• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP merge_query_params函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: _process_submission

 /**
  * Internal method. Alters submitted data to be suitable for quickforms processing.
  * Must be called when the form is fully set up.
  *
  * @param string $method name of the method which alters submitted data
  */
 function _process_submission($method)
 {
     $submission = array();
     if ($method == 'post') {
         if (!empty($_POST)) {
             $submission = $_POST;
         }
     } else {
         $submission = $_GET;
         merge_query_params($submission, $_POST);
         // Emulate handling of parameters in xxxx_param().
     }
     // following trick is needed to enable proper sesskey checks when using GET forms
     // the _qf__.$this->_formname serves as a marker that form was actually submitted
     if (array_key_exists('_qf__' . $this->_formname, $submission) and $submission['_qf__' . $this->_formname] == 1) {
         if (!confirm_sesskey()) {
             print_error('invalidsesskey');
         }
         $files = $_FILES;
     } else {
         $submission = array();
         $files = array();
     }
     $this->detectMissingSetType();
     $this->_form->updateSubmission($submission, $files);
 }
开发者ID:educacionbe,项目名称:cursos,代码行数:32,代码来源:formslib.php


示例2: merge_query_params

/**
 * Merge parsed POST chunks.
 *
 * NOTE: this is not perfect, but it should work in most cases hopefully.
 *
 * @param array $target
 * @param array $values
 */
function merge_query_params(array &$target, array $values)
{
    if (isset($values[0]) and isset($target[0])) {
        // This looks like a split [] array, lets verify the keys are continuous starting with 0.
        $keys1 = array_keys($values);
        $keys2 = array_keys($target);
        if ($keys1 === array_keys($keys1) and $keys2 === array_keys($keys2)) {
            foreach ($values as $v) {
                $target[] = $v;
            }
            return;
        }
    }
    foreach ($values as $k => $v) {
        if (!isset($target[$k])) {
            $target[$k] = $v;
            continue;
        }
        if (is_array($target[$k]) and is_array($v)) {
            merge_query_params($target[$k], $v);
            continue;
        }
        // We should not get here unless there are duplicates in params.
        $target[$k] = $v;
    }
}
开发者ID:abhilash1994,项目名称:moodle,代码行数:34,代码来源:setuplib.php


示例3: test_merge_query_params

 public function test_merge_query_params()
 {
     $original = array('id' => '1', 'course' => '2', 'action' => 'delete', 'grade' => array(0 => 'a', 1 => 'b', 2 => 'c'), 'items' => array('a' => 'aa', 'b' => 'bb'), 'mix' => array(0 => '2'), 'numerical' => array('2' => array('a' => 'b'), '1' => '2'));
     $chunk = array('numerical' => array('0' => 'z', '2' => array('d' => 'e')), 'action' => 'create', 'next' => '2', 'grade' => array(0 => 'e', 1 => 'f', 2 => 'g'), 'mix' => 'mix');
     $expected = array('id' => '1', 'course' => '2', 'action' => 'create', 'grade' => array(0 => 'a', 1 => 'b', 2 => 'c', 3 => 'e', 4 => 'f', 5 => 'g'), 'items' => array('a' => 'aa', 'b' => 'bb'), 'mix' => 'mix', 'numerical' => array('2' => array('a' => 'b', 'd' => 'e'), '1' => '2', '0' => 'z'), 'next' => '2');
     $array = $original;
     merge_query_params($array, $chunk);
     $this->assertSame($expected, $array);
     $this->assertNotSame($original, $array);
     $query = "id=1&course=2&action=create&grade%5B%5D=a&grade%5B%5D=b&grade%5B%5D=c&grade%5B%5D=e&grade%5B%5D=f&grade%5B%5D=g&items%5Ba%5D=aa&items%5Bb%5D=bb&mix=mix&numerical%5B2%5D%5Ba%5D=b&numerical%5B2%5D%5Bd%5D=e&numerical%5B1%5D=2&numerical%5B0%5D=z&next=2";
     $decoded = array();
     parse_str($query, $decoded);
     $this->assertSame($expected, $decoded);
     // Prove that we cannot use array_merge_recursive() instead.
     $this->assertNotSame($expected, array_merge_recursive($original, $chunk));
 }
开发者ID:EmmanuelYupit,项目名称:educursos,代码行数:16,代码来源:setuplib_test.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP merge_tree_node函数代码示例发布时间:2022-05-15
下一篇:
PHP merge_order函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap