书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 17661 个相关结果.
  • Overload resolution

    77 2024-07-11 《Nim v2.0 Manual》
    Overload resolution Overload resolution In a call p(args) the routine p that matches best is selected. If multiple routines match equally well, the ambiguity is reported during...
  • 基本使用

    查询构造器 查询构造器 QueryBuilder是一个SQL构造器,用来构造prepare sql。例如: use EasySwoole \Mysqli\QueryBuilder ; $builder = new QueryBuilder (); //执行条件构造逻辑 $builder -> where ( 'co...
  • Requests

    Requests Request Methods Request URI Scheme Host Port Path Query string Requests Requests are sent from a client to a server. Requests include the method to be applied t...
  • Authentication

    Authentication Sentry::authenticate() Example Exceptions Sentry::authenticateAndRemember() Example Sentry::login() Example Exceptions Sentry::loginAndRemember() Example S...
  • 开发规范

    开发规范 文件和目录 统一代码风格 手工优化 结合 Git Hooks 来格式化代码: Git Commit 开发规范 QueryPHP 遵循 PSR-2 命名规范和 PSR-4 自动加载规范。 文件和目录 PSR-4 基础目录使用小写,其它依次使用大驼峰法命名,例如。 /data/ codes / queryphp / a...
  • Installation

    Installation Prerequisites Using go get Using dep Using glide Using govendor Installation Prerequisites Install Go Set GOPATH Using go get $ cd < PROJECT IN $GOPA...
  • If statement

    110 2024-07-11 《Nim v2.0 Manual》
    If statement If statement Example: var name = readLine ( stdin ) if name == "Andreas" : echo "What a nice name!" elif name == "" : echo "Don't you h...
  • 2. Middleware

    926 2017-12-24 《Echo英文文档》
    Middleware Overview Levels Root Level (Before router) Root Level (After router) Group Level Route Level Skipping Middleware Writing Custom Middleware Middleware Echo mi...
  • Architecture

    Architecture Components Kubernetes mode Services and Pods Pods with a Service Pods without a Service Universal mode Architecture This sections gives an overview of a...
  • jq 一个灵活的轻量级命令行JSON处理器

    jq 补充说明 安装 语法 选项 例子 jq 一个灵活的轻量级命令行JSON处理器 补充说明 jq 是 stedolan 开发的一个轻量级的和灵活的命令行JSON处理器,源码请参考 jq 项目主页 jq 用于处理JSON输入,将给定过滤器应用于其JSON文本输入并在标准输出上将过滤器的结果生成为JSON。 最简单的过滤器是. ,它将...