Home >php教程 >php手册 >参考MongoDB输入格式的SQL生成器 by PHP

参考MongoDB输入格式的SQL生成器 by PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:42:471323browse

这几天参考MongoDB的传入参数格式 find({a:1,$or:{c:1,b:2}}) 这样的表示方法,写了个由这种传入方法对数据进行解析并输出带分析数据的array,以便后续class使用不知道这种设计方法是否实用,里面的注释有可能写的不对,毕竟自己复制粘贴自己的也很多源代码参见附件,这里贴出测试数据的结果以便表明我要做什么,欢迎交流指点 (贴个代码咋就这么难)

Array
(
    [parameters] => Array
        (
            [p11] => 1
            [p12] => foo
            [p13] => 1
            [p14] => 3
        )

    [into] => t1
    [write] => (`a`=:p11,`c`=:p12)
    [detail] => Array
        (
            [where] => Array
                (
                    [c] => 1
                    [a] => 1
                )

        )

    [query] =>  `c` = :p13  and `a` = :p14
    [sql] => UPDATE `t1`  `c` = :p13  and `a` = :p14  SET (`a`=:p11,`c`=:p12) WHERE  `c` = :p13  and `a` = :p14
)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn