zoukankan      html  css  js  c++  java
  • webman快速入门1

    webman快速入门1

    1 数据库操作 安装直接看文档  我比较喜欢原生的写法   这里没用连接池 因为他用单利模式 也反复用 性能不比用了连接池差

       //返回值:方法总会返回结果的数组数据。数组中的每个结果都是一个 PHP StdClass 对象,这使你能够访问到结果的      
    $results = DB::select('select * from aa limit 1'); foreach ($results as $key => $value) {  echo $value->name; } DB::transaction(function () { // 返回影响的行数 $affected = DB::update('update aa set name = 200 where id = ?', [11]); $affected =DB::insert('insert into aa (name, email) values (?, ?)', ['11', '11']); $affected = DB::delete('delete from aa where id=4'); $affected =DB::statement('drop table aa'); print_r($affected); });

     2 redis操作

     
    
    $key = 'test_key';
    Redis::set($key, rand());
    

    3 常用function函数

    <?php
    /**
     * Here is your custom functions.
     */
    function gff(){
        return 11;
    }

    4 写入日志

      Log::info('log test');  

     5 中间件

    H:phpStudyWWWwebmanconfigmiddleware.php

    <?php
    /**
     * This file is part of webman.
     *
     * Licensed under The MIT License
     * For full copyright and license information, please see the MIT-LICENSE.txt
     * Redistributions of files must retain the above copyright notice.
     *
     * @author    walkor<walkor@workerman.net>
     * @copyright walkor<walkor@workerman.net>
     * @link      http://www.workerman.net/
     * @license   http://www.opensource.org/licenses/mit-license.php MIT License
     */
    
    return [
        '' => [
            //supportmiddlewareAuthCheckTest::class,
            supportmiddlewareAccessControlTest::class,
        ]
    ];
    <?php
    /**
     * This file is part of webman.
     *
     * Licensed under The MIT License
     * For full copyright and license information, please see the MIT-LICENSE.txt
     * Redistributions of files must retain the above copyright notice.
     *
     * @author    walkor<walkor@workerman.net>
     * @copyright walkor<walkor@workerman.net>
     * @link      http://www.workerman.net/
     * @license   http://www.opensource.org/licenses/mit-license.php MIT License
     */
    
    namespace supportmiddleware;
    
    use WebmanMiddlewareInterface;
    use WebmanHttpResponse;
    use WebmanHttpRequest;
    
    class AccessControlTest implements MiddlewareInterface
    {
        public function process(Request $request, callable $next) : Response
        {
            echo 'wef';
                return json(['code' => 0, 'msg' => 'ok']);
            // 允许uri以 /api 开头的地址跨域访问
            if (strpos($request->path(), '/api') === 0) {
                // 如果是options请求,不处理业务
                if ($request->method() == 'OPTIONS') {
                    $response = response('');
                } else {
                    $response = $next($request);
                }
                $response->withHeaders([
                    'Access-Control-Allow-Origin' => '*',
                    'Access-Control-Allow-Methods' => 'GET,POST,PUT,DELETE,OPTIONS',
                    'Access-Control-Allow-Headers' => 'Content-Type,Authorization,X-Requested-With,Accept,Origin',
                ]);
            } else {
                $response = $next($request);
            }
            return $response;
        }
    }

    支持拦截


    如果遇到什么不懂的地方直接关注公众号留言(本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。)
    作者:newmiracle
    出处:https://www.cnblogs.com/newmiracle/

     
  • 相关阅读:
    2021.07.01 学习总结
    2021.06.30 学习总结
    2021.06.29 学习总结
    2021.06.28 学习总结
    ubuntu 安装nginx报错./configure: error: SSL modules require the OpenSSL library
    Docker 启动alpine镜像中可执行程序文件遇到 not found
    docker基于cenots7 制作nginx镜像
    【Linux报错】VM虚拟机的CentOS7系统启动时报Generating /run/initramfs/rdsosreport.txt
    Docker Swarm 集群概念扩展
    Docker Swarm 集群弹性、动态扩缩容
  • 原文地址:https://www.cnblogs.com/newmiracle/p/14425868.html
Copyright © 2011-2022 走看看