书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 335 个相关结果.
  • 配置

    配置 日志配置 自定义日志驱动 配置 常用的配置参数会比较少,因为除非你有特别的定制,否则基本上默认值就可以了: use EasyWeChat \Factory ; $config = [ 'app_id' => 'wx3cf0f39249eb0exx' , 'secret' => ...
  • Body

    Body Body Both request and response messages can contain a body. You can retrieve the body of a message using the getBody() method: $response = GuzzleHttp \get ( 'http://...
  • Body

    Body Body Both request and response messages can contain a body. You can retrieve the body of a message using the getBody() method: $response = GuzzleHttp \get ( 'http://...
  • Cookies

    Cookies Cookies Guzzle can maintain a cookie session for you if instructed using the cookies request option. When sending a request, the cookies option must be set to an inst...
  • Mock Handler

    Mock Handler Mock Handler When testing HTTP clients, you often need to simulate specific scenarios like returning a successful response, returning an error, or returning specif...
  • Task Scheduling

    Task Scheduling Introduction Starting The Scheduler Defining Schedules Scheduling Artisan Commands Scheduling Queued Jobs Scheduling Shell Commands Schedule Frequency Options ...
  • 异常

    异常 异常 请求传输过程中出现的错误Guzzle将会抛出异常。 在发送网络错误(连接超时、DNS错误等)时,将会抛出 GuzzleHttp\Exception\RequestException 异常。 该异常继承自 GuzzleHttp\Exception\TransferException ,捕获这个异常可以在传输请求过程中抛出异常。 u...
  • interface

    2965 2018-02-08 《Go Web 编程》
    2.6 interface interface 什么是interface interface类型 interface值 空interface interface函数参数 interface变量存储的类型 嵌入interface 反射 links 2.6 interface interface Go语言里面设计最精妙的应该算in...
  • Headers

    Headers Accessing Headers Complex Headers Headers Both request and response messages contain HTTP headers. Accessing Headers You can check if a request or response has a s...
  • 任务调度

    任务调度 简介 启动调度器 定义调度 调度频率设置 为真验证限制条件 避免任务重复 任务输出 任务挂勾 Ping 网址 任务调度 简介 定义调度 调度频率设置 避免任务重复 任务输出 任务挂勾 简介 在过去,开发者必须为每个需要调度的任务生成单独的 Cron 项目。然而令人头疼的是任务调度不受版本控制,...