美文网首页
PHP脚本中引用thinkphp库

PHP脚本中引用thinkphp库

作者: 飞牛在天 | 来源:发表于2017-09-07 14:11 被阅读0次

    <?php
    use think\Db;

    require DIR . '/../thinkphp/start.php';

    function test() {

    $ads = Db::name('table')->where('id', '=', 25)->find();
    
    print_r($ads);
    

    }

    test();

    相关文章

      网友评论

          本文标题:PHP脚本中引用thinkphp库

          本文链接:https://www.haomeiwen.com/subject/omdijxtx.html