万象云档 本次搜索耗时 2.305 秒,为您找到 322 个相关结果.
  • JSON

    This section uses elm-repl . If you did not install it already, you can use the online REPL . JSON You will be sending lots of JSON in your programs. You use the Json...
  • 16.2 观察器模式

    16.2 观察器模式 16.2 观察器模式 观察器(Observer )模式解决的是一个相当普通的问题:由于某些对象的状态发生了改变,所以一组对象都需要更新,那么该如何解决?在Smalltalk的MVC(模型-视图-控制器)的“模型-视图”部分中,或在几乎等价的“文档-视图结构”中,大家可以看到这个问题。现在我们有一些数据(“文档”)以及多个视图,假定...
  • 验证码辅助函数

    验证码辅助函数 , 加载辅助函数 , 使用验证码辅助函数 , 添加到数据库 , 可用函数 验证码辅助函数 验证码辅助函数文件包含了一些帮助你创建验证码图片的函数。 加载辅助函数 使用验证码辅助函数 添加到数据库 可用函数 ,加载辅助函数 该辅助函数通过下面的代码加载: $this -> load -> helper ...
  • Protobuf in HBase

    Protobuf in HBase 179. Protobuf 179.1. hbase-2.0.0 and the shading of protobufs (HBASE-15638) Protobuf in HBase 179. Protobuf HBase uses Google’s protobufs wherever it persi...
  • Querying

    Querying Simple queries ​ Pipelines ​ Querying Simple queries​ A simple query is a type of query in which the client sends one query to the server and the server returns a...
  • 自定义插件命令行

    [自定义插件命令行] [自定义插件命令行] 第一步,我们以demo 插件为例创建plugin:hello 命令行,在public/plugins/demo/command 目录里创建Hello.php 文件 <? php namespace plugins\demo\command ; use think\console\Comm...
  • PHP的配置

    PHP的配置 一、配置Apache:让Apache能够识别PHP 二、 配置PHP:让PHP能够充当mysql的客户端去连接mysql服务器 PHP的配置 一、配置Apache:让Apache能够识别PHP 1、在Apache中加载PHP模块(把PHP当做Apache的一个模块来运行)。/apache/conf/httpd.conf LoadM...
  • Reflect

    120 2025-05-15 《ECMAScript 6 教程》
    概述 静态方法 Reflect.get(target, name, receiver) Reflect.set(target, name, value, receiver) Reflect.has(obj, name) Reflect.deleteProperty(obj, name) Reflect.construct(target, args)...
  • 技术文档-Discuz!-分库一主多从-config_global.php-文件范例

    120 2025-05-18 《DiscuzX安装教程》
    <? php /** [Discuz!] (C) 2001-2099 Comsenz Inc. config_global.php Build at 2012-07-06 10:16:22 */ $_config = array (); // ---------------------------...
  • 15.3 服务多个客户

    15.3 服务多个客户 15.3 服务多个客户 JabberServer 可以正常工作,但每次只能为一个客户程序提供服务。在典型的服务器中,我们希望同时能处理多个客户的请求。解决这个问题的关键就是多线程处理机制。而对于那些本身不支持多线程的语言,达到这个要求无疑是异常困难的。通过第14章的学习,大家已经知道Java已对多线程的处理进行了尽可能的简化。由...