示例列表
手册中所有示例的列表
- Example#0 - 一个介绍性的范例
- Example#1 - 第一个 PHP 脚本:hello.php
- Example#2 - 从 PHP 获取系统信息
- Example#3 - 打印一个变量(数组元素)
- Example#4 - 流程控制与函数的使用
- Example#5 - 混和 HTML 和 PHP 模式
- Example#6 - 一个简单的 HTML 表单
- Example#7 - 打印来自表单的数据
- Example#8 - Partial lighttpd.conf
- Example#9 - 产生 FastCGI 应答器
- Example#10 - 连接远程 php-fastcgi 实例
- Example#11 - 在 OpenBSD 系统下的软件包的安装示例
- Example#12 - Debian 下将 PHP 安装入 Apache 2 的例子
- Example#13 - 安装完 PHP 后停止并启动 Apache
- Example#14 - 取得 PHP 附加软件包的列表
- Example#15 - 安装 PHP 的 MySQL 和 cURL 支持
- Example#16 - 推荐的 OpCache 配置
- Example#17 - 推荐的 WinCache 配置
- Example#18 - 命令行下配置 IIS 和 PHP
- Example#19 - 注册表变化
- Example#20 - PHP 在 Apache 2.x 中作为 handler
- Example#21 - Apache 2.x 下 CGI 方式的 PHP
- Example#22 - 配置 Apache 以 FastCGI 方式运行 PHP
- Example#23 - 给运行池传递环境变量和设置 PHP 的配置值
- Example#24 - 在 nginx.conf 中设定 PHP
- Example#25 - phpinfo call
- Example#26 - php.ini 中的环境变量
- Example#27 - php.ini 例子
- Example#28 - Apache 配置例子
- Example#29 - PHP 开始和结束标记
- Example#30 - 使用条件的高级分离术
- Example#31 - 包含末尾换行符的结束标记的例子
- Example#32 - 整数文字表达
- Example#33 - 32 位系统下的整数溢出
- Example#34 - 64 位系统下的整数溢出
- Example#35 - PHP 7.3.0 之后的基础 Heredoc 示例
- Example#36 - 结束标识符的缩进不能超过正文的任何一行
- Example#37 - 内容(空白)和结束标识符的不同缩进
- Example#38 - 在结束标识符后继续表达式
- Example#39 - 字符串内容中的结束标识符往往会导致 ParseError
- Example#40 - PHP 7.3.0 之前的错误示例
- Example#41 - 即使在 PHP 7.3.0 之前也合法的示例
- Example#42 - Heredoc 结构的字符串示例
- Example#43 - Heredoc 结构在参数中的示例
- Example#44 - 使用 Heredoc 结构来初始化静态值
- Example#45 - 在 heredoc 结构中使用双引号
- Example#46 - Nowdoc 结构字符串示例
- Example#47 - 含变量引用的 Nowdoc 字符串示例
- Example#48 - 静态数据的示例
- Example#49 - 简单语法示例
- Example#50 - 负数索引
- Example#51 - 一些字符串示例
- Example#52 - 字符串无效下标的例子
- Example#53 - 一个简单数组
- Example#54 - 类型转换与覆盖的示例
- Example#55 - 混合 int 和 string 键名
- Example#56 - 没有键名的索引数组
- Example#57 - 仅对部分单元指定键名
- Example#58 - 复杂类型转换和覆盖的例子
- Example#59 - 访问数组单元
- Example#60 - 数组解引用
- Example#61 - 简单的数组解包
- Example#62 - 重复 key 的数组解包
- Example#63 - 使用 array()
- Example#64 - 集合
- Example#65 - 在循环中改变单元
- Example#66 - 下标从 1 开始的数组
- Example#67 - 填充数组
- Example#68 - 数组排序
- Example#69 - 递归和多维数组
- Example#70 - Iterable 可迭代参数类型示例
- Example#71 - 可迭代参数默认值示例
- Example#72 - 可迭代返回类型示例
- Example#73 - 可迭代生成器返回类型的示例
- Example#74 - 回调函数示例
- Example#75 - 使用 Closure 的示例
- Example#76 -
- Example#77 - 在类中使用类型声明
- Example#78 - 在接口中使用类型声明
- Example#79 - 返回类型声明
- Example#80 - 返回一个对象
- Example#81 - 定义可空(Nullable)的参数类型
- Example#82 - 定义可空(Nullable)的返回类型
- Example#83 - 旧版本中实现允许为空参数的示例
- Example#84 - 参数值的严格类型
- Example#85 - 参数值的类型强制转化
- Example#86 - 返回值的严格类型
- Example#87 - 类型强制转换为联合类型的例子
- Example#88 - 传引用参数的类型
- Example#89 - 捕获 TypeError
- Example#90 - 未初始化变量的默认值
- Example#91 - 使用 global
- Example#92 - 使用 $GLOBALS 替代 global
- Example#93 - 演示超全局变量和作用域的例子
- Example#94 - 演示需要静态变量的例子
- Example#95 - 使用静态变量的例子
- Example#96 - 静态变量与递归函数
- Example#97 - 声明静态变量
- Example#98 - 可变属性示例
- Example#99 - 一个简单的 HTML 表单
- Example#100 - 从一个简单的 POST HTML 表单访问数据
- Example#101 - 更复杂的表单变量
- Example#102 - 一个 setcookie 的示例
- Example#103 - 合法与非法的常量名
- Example#104 - 定义常量
- Example#105 - 使用关键字 const 定义常量
- Example#106 - 结合方向
- Example#107 - 未定义执行顺序
- Example#108 - +、- 、. 具有相同的优先级
- Example#109 - 引用赋值
- Example#110 - 整数的 AND,OR 和 XOR 位运算符
- Example#111 - 字符串的 XOR 运算符
- Example#112 - 整数的位移
- Example#113 - Boolean/null comparison
- Example#114 - 标准数组比较代码
- Example#115 - 赋默认值
- Example#116 - 不清晰的三元运算符行为
- Example#117 - 设置默认值
- Example#118 - 嵌套 NULL 合并运算符
- Example#119 - 涉及字符变量的算数运算
- Example#120 - 逻辑运算符示例
- Example#121 - 比较数组
- Example#122 - 对类使用 instanceof
- Example#123 - 对继承类使用 instanceof
- Example#124 - 使用 instanceof 检查对象不是某个类的实例
- Example#125 - 对接口使用 instanceof
- Example#126 - 对其它变量使用 instanceof
- Example#127 - 用 instanceof 检测其它变量
- Example#128 - 使用 instanceof 测试常量
- Example#129 - 将 instanceof 与任意表达式一起使用
- Example#130 - switch 结构
- Example#131 - switch 结构可以用 string
- Example#132 - match 的基础用法
- Example#133 - match 表达式结构
- Example#134 - match 表达式存在未处理的示例
- Example#135 - 针对整数范围,使用宽泛的表达式匹配分支
- Example#136 - 针对字符串内容,使用宽泛的表达式匹配分支
- Example#137 - Tick 的用法示例
- Example#138 - 对脚本指定编码方式
- Example#139 - 基本的 include 例子
- Example#140 - 函数中的包含
- Example#141 - 通过 HTTP 进行的 include
- Example#142 - 比较 include 的返回值
- Example#143 - include 和 return 语句
- Example#144 - 使用输出缓冲来将 PHP 文件包含入一个字符串
- Example#145 - goto 示例
- Example#146 - goto 跳出循环示例
- Example#147 - 以下写法无效
- Example#148 - 展示函数用途的伪代码
- Example#149 - 有条件的函数
- Example#150 - 函数中的函数
- Example#151 - 递归函数
- Example#152 - 向函数传递数组
- Example#153 - 函数参数使用尾部逗号
- Example#154 - 强制参数后声明可选参数
- Example#155 - 用引用传递函数参数
- Example#156 - 在函数中使用默认参数
- Example#157 - 使用非标量类型作为默认参数
- Example#158 - 函数默认参数的不正确用法
- Example#159 - 函数默认参数正确的用法
- Example#160 - 使用 ... 来访问变量参数
- Example#161 - 使用 ... 来传递参数
- Example#162 - 输入提示的变量参数
- Example#163 - 在 PHP 早期版本中访问可变参数
- Example#164 - 命名参数的语法
- Example#165 - 通过位置传参与命名参数的对比
- Example#166 - 参数顺序不同的示例(同上例)
- Example#167 - 命名参数与位置参数结合使用
- Example#168 - Error exception when passing the same parameter multiple times
- Example#169 - return 的使用
- Example#170 - 返回一个数组以得到多个返回值
- Example#171 - 从函数返回一个引用
- Example#172 - 可变函数示例
- Example#173 - 可变方法范例
- Example#174 - Variable 方法和静态属性示例
- Example#175 - 复杂调用
- Example#176 - 匿名函数示例
- Example#177 - 匿名函数变量赋值示例
- Example#178 - 从父作用域继承变量
- Example#179 - Closures 和作用域
- Example#180 - 自动绑定 $this
- Example#181 - 试图在静态匿名函数中使用 $this
- Example#182 - 试图将对象绑定到静态匿名函数
- Example#183 - 箭头函数自动捕捉变量的值
- Example#184 - 箭头函数自动捕捉变量的值,即使在嵌套的情况下
- Example#185 - 合法的箭头函数例子
- Example#186 - 来自外部范围的值不能在箭头函数内修改
- Example#187 - Simple first class callable syntax
- Example#188 - Scope comparison of CallableExpr(...) and traditional callable
- Example#189 -
- Example#190 - 简单的类定义
- Example#191 - 使用 $this 伪变量的示例
- Example#192 - 创建实例
- Example#193 - 使用任意表达式创建实例
- Example#194 - 对象赋值
- Example#195 - 创建新对象
- Example#196 - 访问新创建对象的成员
- Example#197 - 访问类属性 vs. 调用类方法
- Example#198 - 类属性被赋值为匿名函数时的调用示例
- Example#199 - 简单的类继承
- Example#200 - 兼容的子类方法
- Example#201 - 子类方法移除参数后,导致 Fatal 错误
- Example#202 - 子类方法把可选参数改成强制参数,导致 Fatal 错误
- Example#203 - 在子类中重命一个命名参数,导致 Error
- Example#204 - 类名的解析
- Example#205 - 解析不存在的类名
- Example#206 - 类名解析
- Example#207 - Nullsafe 操作符
- Example#208 - 属性声明
- Example#209 - 类型声明的示例
- Example#210 - 访问属性
- Example#211 - Example of readonly properties
- Example#212 - Illegal initialization of readonly properties
- Example#213 -
- Example#214 -
- Example#215 -
- Example#216 - 定义和使用一个类常量
- Example#217 - 命名空间的 ::class 示例
- Example#218 - 类常量表达式示例
- Example#219 - 自 PHP 7.1.0 起,类常量支持可见性修饰符
- Example#220 - 自动加载示例
- Example#221 - 另一个例子
- Example#222 - 自动加载异常处理
- Example#223 - 自动加载异常处理 - 没有自定义异常机制
- Example#224 - 继承中的构造函数
- Example#225 - 使用构造器参数
- Example#226 - 使用构造器属性提升
- Example#227 - 使用 static 创造方法
- Example#228 - 析构函数示例
- Example#229 - 属性声明
- Example#230 - 方法声明
- Example#231 - PHP 7.1.0 中的常量声明
- Example#232 - 访问同一个对象类型的私有成员
- Example#233 -
- Example#234 - 继承示例
- Example#235 - 在类的外部使用 :: 操作符
- Example#236 - 在类定义内部使用 ::
- Example#237 - 调用父类的方法
- Example#238 - 静态方法示例
- Example#239 - 静态属性示例
- Example#240 - 抽象类示例
- Example#241 - 抽象类示例
- Example#242 - 接口示例
- Example#243 - 可扩充的接口
- Example#244 - 扩展多个接口
- Example#245 - 使用接口常量
- Example#246 - 抽象(abstract)类的接口使用
- Example#247 - 同时使用扩展和实现
- Example#248 - Trait 示例
- Example#249 - 优先顺序示例
- Example#250 - 另一个优先级顺序的例子
- Example#251 - 多个 trait 的用法
- Example#252 - 冲突的解决
- Example#253 - 修改方法的访问控制
- Example#254 - 从 trait 来组成 trait
- Example#255 - 表示通过抽象方法来进行强制要求
- Example#256 - 静态变量
- Example#257 - 静态方法
- Example#258 - 静态属性
- Example#259 - 定义属性
- Example#260 - 解决冲突
- Example#261 - 使用 __get(),__set(),__isset()
和 __unset() 进行属性重载
- Example#262 - 使用 __call()
和 __callStatic() 对方法重载
- Example#263 - 简单的对象遍历
- Example#264 - Sleep 和 wakeup
- Example#265 - 序列化和反序列化
- Example#266 - 简单示例
- Example#267 - 使用 __invoke()
- Example#268 - 使用 __set_state()>
- Example#269 - 使用 __debugInfo()
- Example#270 - Final 方法示例
- Example#271 - Final 类示例
- Example#272 - PHP 8.1.0 起可用的 final 常量示例
- Example#273 - 复制一个对象
- Example#274 - 访问新克隆的对象的成员
- Example#275 - 对象比较的例子
- Example#276 - self:: 用法
- Example#277 - static:: 简单用法
- Example#278 - 非静态环境下使用 static::
- Example#279 - 转发和非转发调用
- Example#280 - 引用和对象
- Example#281 - 命名空间语法示例
- Example#282 - 声明单个命名空间
- Example#283 - 声明单个命名空间
- Example#284 - 声明分层次的单个命名空间
- Example#285 - 定义多个命名空间,简单组合语法
- Example#286 - 定义多个命名空间,大括号语法
- Example#287 - 定义多个命名空间和不包含在命名空间中的代码
- Example#288 - 定义多个命名空间和不包含在命名空间中的代码
- Example#289 - 在命名空间内部访问全局类、函数和常量
- Example#290 - 动态访问元素
- Example#291 - 动态访问命名空间的元素
- Example#292 - __NAMESPACE__ 示例, 在命名空间中的代码
- Example#293 - __NAMESPACE__ 示例,全局代码
- Example#294 - 使用 __NAMESPACE__ 动态创建名称
- Example#295 - namespace 操作符,命名空间中的代码
- Example#296 - namespace 操作符, 全局代码
- Example#297 - 使用 use 操作符导入/使用别名
- Example#298 - 通过 use 操作符导入/使用别名,一行中包含多个 use 语句
- Example#299 - 导入和动态名称
- Example#300 - 导入和完全限定名称
- Example#301 - 不合规的导入规则
- Example#302 - 使用全局空间说明
- Example#303 - 在命名空间中访问全局类
- Example#304 - 命名空间中后备的全局函数/常量
- Example#305 - 名称解析示例
- Example#306 - 在命名空间之外访问全局类
- Example#307 - 在命名空间之外访问全局类
- Example#308 - 在命名空间内访问内置的类
- Example#309 - 在命名空间中访问内置的类、函数、常量
- Example#310 - 完全限定名称
- Example#311 - 限定名称
- Example#312 - 非限定类名
- Example#313 - 非限定函数和常量名
- Example#314 - 在双引号字符串中使用命名空间的危险性
- Example#315 - 未定义的常量
- Example#316 - 未定义的常量
- Example#317 - 值受限的基本用法
- Example#318 - 值排他的高级用法
- Example#319 - 内置的异常处理类
- Example#320 - 扩展 PHP 内置的异常处理类
- Example#321 - 将错误报告转成异常
- Example#322 - 抛出一个异常
- Example#323 - 带 finally 块的异常处理
- Example#324 - finally 和 return 相互之间的影响
- Example#325 - 异常嵌套
- Example#326 - 多个异常的捕获处理
- Example#327 - 忽略捕获的变量
- Example#328 - 以表达式的形式抛出
- Example#329 - 基础用法
- Example#330 - 将 range 实现为生成器
- Example#331 - 一个简单的生成值的例子
- Example#332 - 生成一个键值对
- Example#333 - 生成nulls
- Example#334 - 使用引用来生成值
- Example#335 - 使用 iterator_to_array 的 yield from
- Example#336 - yield from 的基本用法
- Example#337 - yield from 并返回多个值
- Example#338 - 用注解实现接口的可选方法
- Example#339 - 注解语法
- Example#340 - 通过反射 API 读取注解
- Example#341 - 使用反射 API 读取指定的注解
- Example#342 - 简单的 Attribute 类
- Example#343 - 目标限定使用的注解
- Example#344 - 使用 IS_REPEATABLE 允许注解在声明中出现多次
- Example#345 - 对未定义的变量使用引用
- Example#346 - 在函数内引用全局变量
- Example#347 - 引用与 foreach 语句
- Example#348 - $GLOBALS 范例
- Example#349 - 写入整个 $GLOBALS 将会导致错误。
- Example#350 - $_SERVER 范例
- Example#351 - $_GET 范例
- Example#352 - $_POST 范例
- Example#353 - $_ENV 范例
- Example#354 - $_COOKIE 范例
- Example#355 - $php_errormsg 范例
- Example#356 - $http_response_header 范例
- Example#357 - $argc 范例
- Example#358 - $argv 范例
- Example#359 - Exception::getMessage示例
- Example#360 - Exception::getPrevious示例
- Example#361 - Exception::getCode示例
- Example#362 - Exception::getFile示例
- Example#363 - Exception::getLine示例
- Example#364 - Exception::getTrace示例
- Example#365 - Exception::getTraceAsString示例
- Example#366 - Exception::__toString示例
- Example#367 - 使用 set_error_handler 函数将错误信息托管至 ErrorException。
- Example#368 - ErrorException::getSeverity 例子
- Example#369 - Error::getMessage 例子
- Example#370 - Error::getPrevious 例子
- Example#371 - Error::getCode 例子
- Example#372 - Error::getFile 例子
- Example#373 - Error::getLine 例子
- Example#374 - Error::getTrace 例子
- Example#375 - Error::getTraceAsString 例子
- Example#376 - Error::__toString 例子
- Example#377 - 基本用法
- Example#378 - 基本用法
- Example#379 - Basic usage
- Example#380 - ArrayAccess::offsetExists 范例
- Example#381 - 基础用法
- Example#382 - Closure::bind 示例
- Example#383 - Closure::bindTo 实例
- Example#384 - Closure::call 示例
- Example#385 - Generator::getReturn 示例
- Example#386 - Generator::key example
- Example#387 - 用 Generator::send 向生成器函数中传值
- Example#388 - 抛出异常到生成器
- Example#389 - 弱引用的基础用法
- Example#390 - Weakmap 用法示例
- Example#391 - 基础 Stringable 用法
- Example#392 - 基本用法
- Example#393 - 基本用法
- Example#394 - 基本用法
- Example#395 - 基础的 bindto 用法示例
- Example#396 - 获取一个页面并发送 POST 数据
- Example#397 - 忽略重定向并获取 header 和内容
- Example#398 - 获取一个页面,并以POST发送数据
- Example#399 - 基础 password 用法示例
- Example#400 - 检测重定向后最终的 URL
- Example#401 - php://temp/maxmemory
- Example#402 - php://filter/resource=<待过滤的数据流>
- Example#403 - php://filter/read=<读链需要应用的过滤器列表>
- Example#404 - php://filter/write=<写链需要应用的过滤器列表>
- Example#405 - php://memory 和 php://temp 是一次性的
- Example#406 - 打印 data:// 的内容
- Example#407 - 获取媒体类型
- Example#408 - 基本用法
- Example#409 - 从一个活跃的连接中打开流
- Example#410 - $session 变量必须保持可用!
- Example#411 - 遍历 RAR 归档
- Example#412 - 打开加密文件(报头加密)
- Example#413 - 不对变量检查会导致....
- Example#414 - ... 文件系统攻击
- Example#415 - 更安全的文件名检查
- Example#416 - 更安全的文件名检查
- Example#417 - 会被空字符攻击的代码
- Example#418 - 验证输入的正确性
- Example#419 - Hashing password field
- Example#420 - 一段实现数据分页显示的代码…… 也可以被用作创建一个超级用户(PostgreSQL 数据库)。
- Example#421 - 显示文章……以及一些密码(任何数据库系统)
- Example#422 - 从重设密码……到获得更多权限(任何数据库系统)
- Example#423 - 攻击数据库所在主机的操作系统(MSSQL Server 数据库)
- Example#424 - 一个实现分页更安全的方法
- Example#425 - 用自定义的 HTML 页面攻击变量
- Example#426 - 利用变量打开调式功能
- Example#427 - 用 E_ALL 来查找危险的变量
- Example#428 - 危险的变量用法
- Example#429 - 把 PHP 隐藏为另一种语言
- Example#430 - 使用未知的扩展名作为 PHP 的扩展名
- Example#431 - 使用 HTML 作为 PHP 扩展名
- Example#432 - Basic HTTP 认证范例
- Example#433 - Digest HTTP 认证范例
- Example#434 - 强迫重新输入用户名和密码的 HTTP 认证的范例
- Example#435 - 一个简单的 XForms 搜索表单
- Example#436 - 使用 XForm 来产生 $_POST
- Example#437 - 文件上传表单
- Example#438 - 验证上传的文件
- Example#439 - 上传一组文件
- Example#440 - 上传多个文件
- Example#441 - 保存 HTTP PUT 文件
- Example#442 - 获取远程文件的标题
- Example#443 - 将数据保存到远程服务器
- Example#444 -
- Example#445 - 打印内置(且已加载的) PHP 和 Zend 模块
- Example#446 - 当使用双引号时会造成语法错误
- Example#447 - 使用单引号防止 shell 变量替换
- Example#448 - 使用 -B 、 -R 、 -E
选项统计项目总行数。
- Example#449 - 使用 -v 获取 SAPI
的名称以及 PHP 和 Zend 的版本号
- Example#450 - --ini 示例
- Example#451 - 基础 --rf 用法
- Example#452 - --rc 示例
- Example#453 - --re 示例
- Example#454 - --ri 示例
- Example#455 - PHP 脚本作为 shell 脚本执行
- Example#456 - 试图以命令行方式运行的 PHP 脚本(script.php)
- Example#457 - 运行 PHP 命令行脚本的批处理文件(script.bat)
- Example#458 - 使用交互式 shell 执行代码
- Example#459 - Tab 键补全
- Example#460 - 在交互式 shell 中设置 php.ini 配置
- Example#461 - 启动Web服务器
- Example#462 - 启动时指定根目录
- Example#463 - 使用路由(Router)脚本
- Example#464 - Checking for CLI Web Server Use
- Example#465 - Handling Unsupported File Types
- Example#466 - Accessing the CLI Web Server From Remote Machines
- Example#467 - 生成一个新的zval容器
- Example#468 - 显示zval信息
- Example#469 - 增加一个zval的引用计数
- Example#470 - 减少引用计数
- Example#471 - Creating a array zval
- Example#472 - 添加一个已经存在的元素到数组中
- Example#473 - 从数组中删除一个元素
- Example#474 - 把数组作为一个元素添加到自己
- Example#475 - Unsetting $a
- Example#476 - Memory usage example
- Example#477 - GC性能影响
- Example#478 - 执行以上脚本
- Example#479 - 重新编译PHP以启用GC benchmarking
- Example#480 - GC 统计数据
- Example#481 - all_probes.d for tracing all PHP Static Probes with DTrace
- Example#482 - all_probes.stp for tracing all PHP Static Probes with SystemTap
- Example#483 - apcu_add 示例
- Example#484 - apcu_cache_info 示例
- Example#485 - apcu_cas example
- Example#486 - apcu_dec example
- Example#487 - A apcu_delete example
- Example#488 - An apcu_entry example
- Example#489 - apcu_exists example
- Example#490 - A apcu_fetch example
- Example#491 - apcu_inc example
- Example#492 - A apcu_key_info example
- Example#493 - A apcu_sma_info example
- Example#494 - apcu_store 示例
- Example#495 - A APCUIterator::__construct example
- Example#496 - 在脚本中使用错误句柄
- Example#497 - debug_backtrace 范例
- Example#498 - debug_print_backtrace 范例
- Example#499 - error_clear_last 例子
- Example#500 - An error_get_last 范例
- Example#501 - error_log 范例
- Example#502 - error_reporting 范例
- Example#503 - restore_error_handler 范例
- Example#504 - restore_exception_handler 范例
- Example#505 - 用 set_error_handler 和 trigger_error 进行错误处理
- Example#506 - set_exception_handler 范例
- Example#507 - trigger_error 示例
- Example#508 - Calling a function from shared library
- Example#509 - Calling a function, returning a structure through an argument
- Example#510 - Accessing existing C variables
- Example#511 - Creating and Modifying C variables
- Example#512 - Working with C arrays
- Example#513 - Working with C enums
- Example#514 -
- Example#515 -
- Example#516 - 输出控制举例
- Example#517 - ob_end_clean example
- Example#518 - ob_end_flush example
- Example#519 - A simple ob_get_clean example
- Example#520 - A simple ob_get_contents example
- Example#521 - ob_get_flush example
- Example#522 - A simple ob_get_length example
- Example#523 - ob_gzhandler example
- Example#524 - ob_list_handlers example
- Example#525 - 用户自定义回调函数的例子
- Example#526 - 以兼容 PHP 5.3 和 5.4 的方式创建一个不可擦除的输出缓冲区
- Example#527 - output_add_rewrite_var example
- Example#528 - output_reset_rewrite_vars example
- Example#529 - assert_options 例子
- Example#530 - 使用自定义处理程序处理失败的断言
- Example#531 - 使用自定义处理器打印描述信息
- Example#532 - Expectations without a custom exception
- Example#533 - Expectations with a custom exception
- Example#534 - cli_get_process_title example
- Example#535 - cli_set_process_title example
- Example#536 - dl 例子
- Example#537 - extension_loaded 例子
- Example#538 - 一个 gc_enabled 例子
- Example#539 - gc_status Usage
- Example#540 - get_current_user 例子
- Example#541 - get_defined_constants 例子
- Example#542 - 打印 XML 函数
- Example#543 - get_include_path 例子
- Example#544 - get_included_files 范例
- Example#545 - get_loaded_extensions 范例
- Example#546 - get_magic_quotes_runtime 例子
- Example#547 - Unfiltered get_resources
- Example#548 - Filtered get_resources
- Example#549 - getenv 例子
- Example#550 - getlastmod 例子
- Example#551 - getopt 例子:基本用法
- Example#552 - getopt 例子:引入长选项
- Example#553 - getopt 例子:传递同一多个选项
- Example#554 - getopt 例子:使用 rest_index
- Example#555 - getrusage 例子
- Example#556 - ini_get_all 例子
- Example#557 - 禁用 details
- Example#558 - 一些 ini_get 例子
- Example#559 - ini_restore 例子
- Example#560 - 设置一个 ini 选项
- Example#561 - 一个 memory_get_usage 例子
- Example#562 - php_ini_loaded_file 例子
- Example#563 - 列出返回的 ini 文件的简单例子
- Example#564 - php_sapi_name 例子
- Example#565 - 一些 php_uname 的例子
- Example#566 - 一些系统相关常量的例子
- Example#567 - 打印普遍名单
- Example#568 - 打印核心开发者和文档组
- Example#569 - 打印所有贡献者
- Example#570 - phpinfo 范例
- Example#571 - phpversion 范例
- Example#572 - PHP_VERSION_ID 范例和用法
- Example#573 - 设置一个环境变量
- Example#574 - restore_include_path 例子
- Example#575 - set_include_path 例子
- Example#576 - 添加到include path
- Example#577 - sys_get_temp_dir 例子
- Example#578 - version_compare examples
- Example#579 - zend_thread_id 例子
- Example#580 - zend_version 例子
- Example#581 - Custom Superglobals with runkit.superglobal=_FOO,_BAR in php.ini
- Example#582 - A runkit7_function_add example
- Example#583 - A runkit7_function_copy example
- Example#584 - A runkit7_function_redefine example
- Example#585 - runkit7_method_add example
- Example#586 - runkit7_method_copy example
- Example#587 - runkit7_method_redefine example
- Example#588 - runkit7_method_remove example
- Example#589 - runkit7_method_rename example
- Example#590 - runkit7_zval_inspect example
- Example#591 - Basic uopz_add_function Usage
- Example#592 - uopz_allow_exit example
- Example#593 - uopz_backup example
- Example#594 - uopz_compose example
- Example#595 - uopz_copy example
- Example#596 - Basic uopz_del_function Usage
- Example#597 - uopz_delete example
- Example#598 - uopz_delete class example
- Example#599 - uopz_extend example
- Example#600 - uopz_flags example
- Example#601 - "Unfinalize" a Class
- Example#602 - uopz_function example
- Example#603 - uopz_function class example
- Example#604 - uopz_get_exit_status example
- Example#605 - Basic uopz_get_hook Usage
- Example#606 - uopz_get_mock example
- Example#607 - Basic uopz_get_property Usage
- Example#608 - uopz_get_return example
- Example#609 - Basic uopz_get_static Usage
- Example#610 - uopz_implement example
- Example#611 - uopz_overload example
- Example#612 - uopz_redefine example
- Example#613 - uopz_rename example
- Example#614 - uopz_rename class example
- Example#615 - uopz_restore example
- Example#616 - Basic uopz_set_hook Usage
- Example#617 - uopz_set_mock example
- Example#618 - uopz_set_mock example
- Example#619 - uopz_set_mock and static members
- Example#620 - Basic uopz_set_property Usage
- Example#621 - uopz_set_return example
- Example#622 - uopz_set_return example
- Example#623 - uopz_set_return class example
- Example#624 - Basic uopz_set_static Usage
- Example#625 - uopz_undefine example
- Example#626 - Basic uopz_unset_hook Usage
- Example#627 - uopz_unset_mock example
- Example#628 - uopz_unset_return example
- Example#629 - wincache.ignorelist example
- Example#630 - Authentication configuration for wincache.php
- Example#631 - Enabling WinCache session handler
- Example#632 - Enabling WinCache functions reroutes
- Example#633 - Reroute.ini file content
- Example#634 - A wincache_fcache_fileinfo example
- Example#635 - A wincache_fcache_meminfo example
- Example#636 - Using wincache_lock
- Example#637 - A wincache_ocache_fileinfo example
- Example#638 - A wincache_ocache_meminfo example
- Example#639 - A wincache_refresh_if_changed example
- Example#640 - A wincache_rplist_fileinfo example
- Example#641 - A wincache_rplist_meminfo example
- Example#642 - A wincache_scache_info example
- Example#643 - A wincache_scache_meminfo example
- Example#644 - wincache_ucache_add with key as a string
- Example#645 - wincache_ucache_add with key as an array
- Example#646 - Using wincache_ucache_cas
- Example#647 - using wincache_ucache_clear
- Example#648 - Using wincache_ucache_dec
- Example#649 - Using wincache_ucache_delete with key as a string
- Example#650 - Usingwincache_ucache_delete with key as an array
- Example#651 - Using wincache_ucache_delete with key as an array where some elements cannot be deleted
- Example#652 - Using wincache_ucache_exists
- Example#653 - wincache_ucache_get with key as a string
- Example#654 - wincache_ucache_get with key as an array
- Example#655 - Using wincache_ucache_inc
- Example#656 - Using wincache_ucache_info
- Example#657 - A wincache_ucache_meminfo example
- Example#658 - wincache_ucache_set with key as a string
- Example#659 - wincache_ucache_set with key as an array
- Example#660 - Using wincache_unlock
- Example#661 - Xhprof 范例,可选使用图形界面
- Example#662 - xhprof_disable 范例
- Example#663 - xhprof_enable 范例
- Example#664 - xhprof_sample_disable 范例
- Example#665 - Make sure the item is stored
- Example#666 - Using CHAP passwords
- Example#667 - radius_acct_open example
- Example#668 - radius_add_server example
- Example#669 - radius_auth_open example
- Example#670 - radius_create_request example
- Example#671 - radius_cvt_addr example
- Example#672 - radius_cvt_int example
- Example#673 - radius_cvt_string example
- Example#674 - radius_get_attr example
- Example#675 - radius_get_tagged_attr_data example
- Example#676 - radius_get_tagged_attr_tag example
- Example#677 - radius_get_vendor_attr example
- Example#678 - radius_put_attr example
- Example#679 - radius_put_int example
- Example#680 - radius_put_string example
- Example#681 - radius_put_vendor_attr example
- Example#682 - Readline Callback Interface Example
- Example#683 - readline Example
- Example#684 - bzip2 小例子
- Example#685 - 压缩数据
- Example#686 - 解压一个字符串
- Example#687 - bzerror 范例
- Example#688 - bzopen 范例
- Example#689 - bzread 范例
- Example#690 - bzwrite 范例
- Example#691 - Using an external file
- Example#692 - Using a file within a phar archive
- Example#693 - Converting a phar archive from phar to tar file format
- Example#694 - phar.cache_list 用法示例
- Example#695 - 一个 Phar::addEmptyDir 示例
- Example#696 - 一个 Phar::addFile 示例
- Example#697 - 一个 Phar::addFromString 示例
- Example#698 - A Phar::apiVersion example
- Example#699 - A Phar::buildFromDirectory example
- Example#700 - A Phar::buildFromIterator with SplFileInfo
- Example#701 - A Phar::buildFromIterator with other iterators
- Example#702 - A Phar::canCompress example
- Example#703 - A Phar::canWrite example
- Example#704 - A Phar::compress example
- Example#705 - A Phar::compressFiles example
- Example#706 - A Phar::__construct example
- Example#707 - A Phar::convertToData example
- Example#708 - A Phar::convertToExecutable example
- Example#709 - A Phar::copy example
- Example#710 - A Phar::count example
- Example#711 - A Phar::createDefaultStub example
- Example#712 - A Phar::decompress example
- Example#713 - A Phar::decompressFiles example
- Example#714 - A Phar::delMetaData example
- Example#715 - 一个 Phar::delete 示例
- Example#716 - A Phar::extractTo example
- Example#717 - A Phar::getMetadata example
- Example#718 - A Phar::getStub example
- Example#719 - A Phar::hasMetadata example
- Example#720 - A Phar::interceptFileFuncs example
- Example#721 - A Phar::interceptFileFuncs example
- Example#722 - A Phar::isBuffering example
- Example#723 - A Phar::isCompressed example
- Example#724 - A Phar::loadPhar example
- Example#725 - A Phar::mapPhar example
- Example#726 - A Phar::mount example
- Example#727 - A Phar::mungServer example
- Example#728 - A Phar::offsetExists example
- Example#729 - Phar::offsetGet example
- Example#730 - A Phar::offsetSet example
- Example#731 - A Phar::offsetUnset example
- Example#732 - A Phar::running example
- Example#733 - A Phar::setAlias example
- Example#734 - A Phar::setDefaultStub example
- Example#735 - A Phar::setMetadata example
- Example#736 - A Phar::setStub example
- Example#737 - A Phar::startBuffering example
- Example#738 - A Phar::stopBuffering example
- Example#739 - A Phar::unlinkArchive example
- Example#740 - A Phar::webPhar example
- Example#741 - A PharData::addEmptyDir example
- Example#742 - A PharData::addFile example
- Example#743 - A PharData::addFromString example
- Example#744 - A PharData::buildFromDirectory example
- Example#745 - A PharData::buildFromIterator with SplFileInfo
- Example#746 - A PharData::buildFromIterator with other iterators
- Example#747 - A PharData::compress example
- Example#748 - A PharData::compressFiles example
- Example#749 - A PharData::__construct example
- Example#750 - A PharData::convertToData example
- Example#751 - A PharData::convertToExecutable example
- Example#752 - A PharData::copy example
- Example#753 - A PharData::decompress example
- Example#754 - A PharData::decompressFiles example
- Example#755 - A PharData::delMetaData example
- Example#756 - A PharData::delete example
- Example#757 - A PharData::extractTo example
- Example#758 - A PharData::offsetSet example
- Example#759 - A PharData::offsetUnset example
- Example#760 - A Phar::setMetadata example
- Example#761 - A PharFileInfo::chmod example
- Example#762 - A PharFileInfo::compress example
- Example#763 - A PharFileInfo::__construct example
- Example#764 - A PharFileInfo::decompress example
- Example#765 - A PharFileInfo::delMetaData example
- Example#766 - A PharFileInfo::getCRC32 example
- Example#767 - A PharFileInfo::getCompressedSize example
- Example#768 - A PharFileInfo::getMetadata example
- Example#769 - A PharFileInfo::getPharFlags example
- Example#770 - A PharFileInfo::isCRCChecked example
- Example#771 - A PharFileInfo::isCompressed example
- Example#772 - A PharFileInfo::setMetadata example
- Example#773 - Rar installation
- Example#774 - On-the-fly decompression
- Example#775 - RAR extension filesystem extraction example
- Example#776 - 面向对象风格
- Example#777 - 过程化风格
- Example#778 - 面向对象风格
- Example#779 - 过程化风格
- Example#780 - 面向对象风格
- Example#781 - 过程化风格
- Example#782 - 面向对象风格
- Example#783 - 过程化风格
- Example#784 - 面向对象风格
- Example#785 - 过程化风格
- Example#786 - 面向对象风格
- Example#787 - 过程化风格
- Example#788 - 面向对象风格
- Example#789 - 过程化风格
- Example#790 - Volume Callback
- Example#791 - 面向对象风格
- Example#792 - 过程化风格
- Example#793 - RarArchive::__toString example
- Example#794 - RarEntry::extract example
- Example#795 - How to extract all files in archive:
- Example#796 - RarEntry::getAttr example
- Example#797 - RarEntry::getHostOs example (version >= 2.0.0)
- Example#798 - RarEntry::getHostOs example (version <= 1.0.0)
- Example#799 - RarEntry::getMethod example
- Example#800 - RarEntry::getName example
- Example#801 - RarEntry::getPackedSize example
- Example#802 - RarEntry::getStream example
- Example#803 - RarEntry::getUnpackedSize example
- Example#804 - RarEntry::getVersion example
- Example#805 - RarException::isUsingExceptions example
- Example#806 - RarException::setUsingExceptions example
- Example#807 - 创建一个 Zip 归档
- Example#808 - 输出文档细节和列表
- Example#809 - Zip 流封装,读取一个 OpenOffice 文件的元信息
- Example#810 - Zip 使用范例
- Example#811 - Create a new directory in an archive
- Example#812 - Open and add
- Example#813 - Add an entry to a new archive
- Example#814 - Add file to a directory inside an archive
- Example#815 - ZipArchive::addGlob example
- Example#816 - ZipArchive::addPattern example
- Example#817 - Delete file from archive using its index
- Example#818 - Deleting a file and directory from an archive, using names
- Example#819 - Extract all entries
- Example#820 - Extract two entries
- Example#821 - Dump an archive comment
- Example#822 - Dump an entry comment
- Example#823 - Dump an entry comment
- Example#824 - Extract all entries with Unix rights
- Example#825 - Get the file contents
- Example#826 - Get the file contents
- Example#827 - Convert an image from a zip entry
- Example#828 - ZipArchive::getNameIndex example
- Example#829 - Get the entry contents with fread and store it
- Example#830 - Same as the previous example but with fopen and the zip
stream wrapper
- Example#831 - Stream wrapper and image, can be used with the xml function
as well
- Example#832 - Get the entry contents with fread and store it
- Example#833 - Get the entry contents with fread and store it
- Example#834 - Create an archive and then use it with ZipArchive::locateName
- Example#835 - Open and extract
- Example#836 - Create an archive
- Example#837 - Create an temporary archive
- Example#838 - Archive a file
- Example#839 - Archive a file
- Example#840 - Rename one entry
- Example#841 - Rename one entry
- Example#842 - Open and replace
- Example#843 - Create an archive and set a comment
- Example#844 - Open an archive and set a comment for an entry
- Example#845 - Open an archive and set a comment for an entry
- Example#846 - Add files with different compression methods to an archive
- Example#847 - Add files with different compression methods to an archive
- Example#848 - Add file and set compression method
- Example#849 - Archive and encrypt a file
- Example#850 - Archive a file, with its Unix rights
- Example#851 - Archive a file
- Example#852 - Archive a file
- Example#853 - Dump the stat info of an entry
- Example#854 - Dump the stat info of an entry
- Example#855 - Small Zlib Example
- Example#856 - Working with the incremental compression and decompression API
- Example#857 - gzclose example
- Example#858 - gzcompress example
- Example#859 - gzdeflate example
- Example#860 - Creating a gzip file
- Example#861 - gzeof example
- Example#862 - gzfile example
- Example#863 - gzgetc example
- Example#864 - gzgets example
- Example#865 - gzgetss example
- Example#866 - gzinflate example
- Example#867 - gzopen Example
- Example#868 - gzpassthru example
- Example#869 - gzread example
- Example#870 - gzseek example
- Example#871 - gzuncompress example
- Example#872 - gzwrite example
- Example#873 - zlib_encode example
- Example#874 - random_bytes example
- Example#875 - random_int example
- Example#876 - hash_algos 例程
- Example#877 - hash_copy 例程
- Example#878 - hash_equals 例程
- Example#879 - 使用 hash_file
- Example#880 - hash_final 例程
- Example#881 - hash_hkdf example
- Example#882 - hash_hmac_algos example
- Example#883 - hash_hmac_file 例程
- Example#884 - hash_hmac 例程
- Example#885 - 增量哈希运算例程
- Example#886 - hash_pbkdf2 例程,基础用法
- Example#887 - hash_update_stream 例程
- Example#888 - 一个 hash 例程
- Example#889 - 使用 PHP 5.4 或者更高版本计算 tiger 哈希值
- Example#890 - mcrypt_create_iv 例程
- Example#891 - mcrypt_enc_get_algorithms_name 例程
- Example#892 - mcrypt_enc_get_modes_name 例程
- Example#893 - mcrypt_enc_get_supported_key_sizes 例程
- Example#894 - mcrypt_encrypt 例程
- Example#895 - mcrypt_get_block_size 例程
- Example#896 - mcrypt_get_cipher_name 例程
- Example#897 - mcrypt_get_iv_size 例程
- Example#898 - mcrypt_get_key_size 例程
- Example#899 - mcrypt_list_algorithms 例程
- Example#900 - mcrypt_list_modes 例程
- Example#901 - mcrypt_module_open 例程
- Example#902 - 在加密中使用 mcrypt_module_open
- Example#903 - mcrypt_module_self_test 例程
- Example#904 - mdecrypt_generic 例程
- Example#905 - Computes the MD5 digest and hmac and print it out as hex
- Example#906 - Traversing all hashes
- Example#907 - mhash_get_block_size Example
- Example#908 - mhash_get_hash_name Example
- Example#909 - openssl_cipher_iv_length 范例
- Example#910 - openssl_cms_sign example
- Example#911 - openssl_csr_export_to_file() 范例
- Example#912 - openssl_csr_export() 范例
- Example#913 - openssl_csr_get_public_key() example
- Example#914 - openssl_csr_get_subject() 范例
- Example#915 - 创建一个自签名的证书
- Example#916 - 在PHP 7.1+版本中创建一个自签名的ECC证书
- Example#917 - openssl_csr_sign example - signing a
CSR (how to implement your own CA)
- Example#918 - PHP 7.1+ 下 GCM 模式的 AES 认证加密例子
- Example#919 - PHP 5.6+ 的 AES 认证加密例子
- Example#920 - openssl_error_string example
- Example#921 - openssl_get_cert_locations 范例
- Example#922 - openssl_get_cipher_methods example
- Example#923 - openssl_get_curve_names 范例
- Example#924 - openssl_get_md_methods 范例:
- Example#925 - openssl_open 范例
- Example#926 - openssl_pbkdf2() 范例
- Example#927 - openssl_pkcs12_read 范例
- Example#928 - openssl_pkcs7_decrypt 范例
- Example#929 - openssl_pkcs7_encrypt 范例
- Example#930 - 根据 P7B 文件获取 PEM 数组
- Example#931 - openssl_pkcs7_sign 范例
- Example#932 - openssl_pkey_derive example
- Example#933 - Obtain the public key from a private key
- Example#934 - openssl_random_pseudo_bytes 范例:
- Example#935 - openssl_seal 范例:
- Example#936 - openssl_sign example
- Example#937 - openssl_sign example
- Example#938 - openssl_spki_export_challenge 范例:
- Example#939 - openssl_spki_export_challenge 来自 <keygen> 元素的范例:
- Example#940 - openssl_spki_export 范例:
- Example#941 - openssl_spki_export example from <keygen>
- Example#942 - openssl_spki_new 范例:
- Example#943 - openssl_spki_verify 范例:
- Example#944 - openssl_spki_verify example from <keygen>
- Example#945 - openssl_verify 范例:
- Example#946 - openssl_verify 范例:
- Example#947 - openssl_x509_verify example
- Example#948 - Basic password usage
- Example#949 - password_hash 例子
- Example#950 - password_hash 手动设置 cost 的例子
- Example#951 - 寻找最佳 cost 的 password_hash 例子
- Example#952 - 使用 Argon2i 的password_hash例子
- Example#953 - password_needs_rehash用法
- Example#954 - password_verify 例子
- Example#955 - sodium_crypto_box_seal_open example
- Example#956 - sodium_crypto_box_seal example
- Example#957 - sodium_crypto_core_ristretto255_add example
- Example#958 - sodium_crypto_core_ristretto255_from_hash example
- Example#959 - sodium_crypto_core_ristretto255_is_valid_point example
- Example#960 - sodium_crypto_core_ristretto255_random example
- Example#961 - sodium_crypto_core_ristretto255_scalar_add example
- Example#962 - sodium_crypto_core_ristretto255_scalar_invert example
- Example#963 - sodium_crypto_core_ristretto255_scalar_negate example
- Example#964 - sodium_crypto_core_ristretto255_scalar_random example
- Example#965 - sodium_crypto_core_ristretto255_scalar_sub example
- Example#966 - sodium_crypto_core_ristretto255_sub example
- Example#967 - sodium_crypto_generichash_final example
- Example#968 - sodium_crypto_generichash_init example
- Example#969 - sodium_crypto_generichash_update example
- Example#970 - sodium_crypto_kx_keypair usage
- Example#971 - sodium_crypto_pwhash_str example
- Example#972 - sodium_crypto_pwhash example
- Example#973 - sodium_crypto_secretbox_keygen example
- Example#974 - Comparing sodium_crypto_secretbox_keygen
with random_bytes
- Example#975 - sodium_crypto_secretbox_open example
- Example#976 - sodium_crypto_secretbox example
- Example#977 - sodium_crypto_secretstream_xchacha20poly1305_init_pull example
- Example#978 - sodium_crypto_secretstream_xchacha20poly1305_init_push example
- Example#979 - DBA example
- Example#980 - Traversing a database
- Example#981 - dba_handlers Example
- Example#982 - List Privileges for a Column
- Example#983 - List Columns of a Table
- Example#984 - DSN-less connections
- Example#985 - List available DSNs
- Example#986 - odbc_execute and odbc_prepare example
- Example#987 - odbc_fetch_into examples
- Example#988 - odbc_next_result
- Example#989 - odbc_execute and odbc_prepare example
- Example#990 - List primary Keys of a Column
- Example#991 - List Columns of a stored Procedure
- Example#992 - List stored Procedures of a Database
- Example#993 - odbc_result examples
- Example#994 - odbc_setoption examples
- Example#995 - List Statistics of a Table
- Example#996 - List Privileges of a Table
- Example#997 - List Tables in a Catalog
- Example#998 - 使用 PDO::ATTR_DRIVER_NAME 的例子
- Example#999 - 连接到 MySQL
- Example#1000 - 处理连接错误
- Example#1001 - 关闭一个连接
- Example#1002 - 持久化连接
- Example#1003 - 在事务中执行批处理
- Example#1004 - 用预处理语句进行重复插入
- Example#1005 - 用预处理语句进行重复插入
- Example#1006 - 使用预处理语句获取数据
- Example#1007 - Calling a stored procedure with an output parameter
- Example#1008 - 带输入/输出参数调用存储过程
- Example#1009 - 占位符的无效使用
- Example#1010 - 创建 PDO 实例并设置错误模式
- Example#1011 - 创建 PDO 实例并在构造函数中设置错误模式
- Example#1012 - 从数据库中显示一张图片
- Example#1013 - 插入一张图片到数据库
- Example#1014 - 插入一张图片到数据库:Oracle
- Example#1015 - 回滚一个事务
- Example#1016 - 提交一个基础事务
- Example#1017 - 提交一个DDL事务
- Example#1018 - Create a PDO instance via driver invocation
- Example#1019 - Create a PDO instance via URI invocation
- Example#1020 - 使用别名创建一个PDO实例
- Example#1021 - 取得一个 SQLSTATE 码
- Example#1022 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
- Example#1023 - 发出一条 DELETE 语句
- Example#1024 - 取回数据库连接属性
- Example#1025 - 一个 PDO::getAvailableDrivers 的例子
- Example#1026 - 命名参数形式的 SQL 语句模板
- Example#1027 - 问号形式的 SQL 语句模板
- Example#1028 - 展示 PDO::query 的使用
- Example#1029 - 普通字符串加引号
- Example#1030 - 危险字符串加引号
- Example#1031 - 复杂字符串加引号
- Example#1032 - 回滚一个事务
- Example#1033 - 把结果集输出绑定到 PHP 变量
- Example#1034 - 执行一条使用命名占位符的预处理语句
- Example#1035 - 执行一条使用问号占位符的预处理语句
- Example#1036 - 使用 INOUT 参数调用一个存储过程
- Example#1037 - 执行一条使用命名占位符的预处理语句
- Example#1038 - 执行一条使用问号占位符的预处理语句
- Example#1039 - 一个 PDOStatement::closeCursor 的例子
- Example#1040 - 计算列数
- Example#1041 - PDOStatement::debugDumpParams 使用命名参数的例子
- Example#1042 - PDOStatement::debugDumpParams 使用未命名参数的例子
- Example#1043 - 取回一个 SQLSTATE 码
- Example#1044 - 显示连接到DB2数据库的 PDO_ODBC 连接的 errorInfo() 的字段
- Example#1045 - 执行一条绑定变量的预处理语句
- Example#1046 - 使用一个含有插入值的数组执行一条预处理语句(命名参数)
- Example#1047 - 使用一个含有插入值的数组执行一条预处理语句(占位符)
- Example#1048 - 执行一条问号占位符的预处理语句
- Example#1049 - 使用数组执行一条含有 IN 子句的预处理语句
- Example#1050 - 使用不同的提取方式获取行
- Example#1051 - 使用一个可滚动游标获取行
- Example#1052 - 获取结果集中所有剩余的行
- Example#1053 - 获取结果集中单独一列的所有值
- Example#1054 - 根据单独的一列把所有值分组
- Example#1055 - 每行结果实例化一个类
- Example#1056 - 每行调用一次函数
- Example#1057 - 返回下一行的第一列
- Example#1058 - 检索列的元数据
- Example#1059 - 获取由一个存储过程返回的多个行集
- Example#1060 - 返回删除的行数
- Example#1061 - 计算由一个 SELECT 语句返回的行数
- Example#1062 - 设置获取模式
- Example#1063 - Insert LOBs in CUBRID PDO
- Example#1064 - Fetch LOBs in CUBRID PDO
- Example#1065 - Insert set in CUBRID PDO with default data type.
- Example#1066 - Specify data type when insert set in CUBRID PDO
- Example#1067 - PDO_CUBRID DSN examples
- Example#1068 - A PDO::cubrid_schema example
- Example#1069 - PDO_DBLIB DSN examples
- Example#1070 - PDO_FIREBIRD DSN example with path
- Example#1071 - PDO_FIREBIRD DSN example with port and path
- Example#1072 - PDO_FIREBIRD DSN example with localhost and path to employee.fdb on Debian system
- Example#1073 - PDO_FIREBIRD DSN to connect to a dialect 1 database
- Example#1074 - PDO_IBM DSN example using db2cli.ini
- Example#1075 - PDO_IBM DSN example using a connection string
- Example#1076 - PDO_INFORMIX DSN example using odbc.ini
- Example#1077 - PDO_INFORMIX DSN example using a connection string
- Example#1078 - Forcing queries to be buffered in mysql
- Example#1079 - PDO_MYSQL DSN examples
- Example#1080 - PDO_SQLSRV DSN examples
- Example#1081 - PDO_OCI DSN examples
- Example#1082 - PDO_ODBC DSN example (ODBC driver manager)
- Example#1083 - PDO_ODBC DSN example (IBM DB2 uncataloged connection)
- Example#1084 - PDO_ODBC DSN example (Microsoft Access uncataloged connection)
- Example#1085 - PDO_PGSQL DSN examples
- Example#1086 - A PDO::pgsqlLOBCreate example
- Example#1087 - A PDO::pgsqlLOBOpen example
- Example#1088 - A PDO::pgsqlLOBUnlink example
- Example#1089 - PDO_SQLITE DSN examples
- Example#1090 - max_length aggregation function example
- Example#1091 - PDO::sqliteCreateCollation example
- Example#1092 - PDO::sqliteCreateFunction example
- Example#1093 - 数据查询的例子
- Example#1094 - 数据插入的例子
- Example#1095 - cubrid_bind example
- Example#1096 - cubrid_bind BLOB/CLOB example
- Example#1097 - cubrid_bind BLOB/CLOB example
- Example#1098 - cubrid_close_prepare example
- Example#1099 - cubrid_close_request example
- Example#1100 - cubrid_col_get example
- Example#1101 - cubrid_col_size example
- Example#1102 - cubrid_column_names example
- Example#1103 - cubrid_column_types example
- Example#1104 - cubrid_commit example
- Example#1105 - cubrid_connect_with_url url without properties example
- Example#1106 - cubrid_connect_with_url url with properties example
- Example#1107 - cubrid_connect example
- Example#1108 - cubrid_current_oid example
- Example#1109 - cubrid_disconnect example
- Example#1110 - cubrid_drop example
- Example#1111 - cubrid_error_code_facility example
- Example#1112 - cubrid_error_code example
- Example#1113 - cubrid_error_msg example
- Example#1114 - cubrid_execute example
- Example#1115 - cubrid_fetch example
- Example#1116 - cubrid_free_result example
- Example#1117 - cubrid_get_charset example
- Example#1118 - cubrid_get_class_name example
- Example#1119 - cubrid_get_client_info example
- Example#1120 - cubrid_get_db_parameter example
- Example#1121 - cubrid_get_query_timeout example
- Example#1122 - cubrid_get_server_info example
- Example#1123 - cubrid_get example
- Example#1124 - cubrid_insert_id example
- Example#1125 - cubrid_is_instance example
- Example#1126 - cubrid_lob_close example
- Example#1127 - cubrid_lob_export example
- Example#1128 - cubrid_lob_get example
- Example#1129 - cubrid_lob_send example
- Example#1130 - cubrid_lob_size example
- Example#1131 - cubrid_lob2_bind example
- Example#1132 - cubrid_lob2_export example
- Example#1133 - cubrid_lob2_export example
- Example#1134 - cubrid_lob2_read example 1
- Example#1135 - cubrid_lob2_read example 2
- Example#1136 - cubrid_lob2_seek64 example
- Example#1137 - cubrid_lob2_seek example
- Example#1138 - cubrid_lob2_write example 1
- Example#1139 - cubrid_lob2_write example 2
- Example#1140 - cubrid_lock_read example
- Example#1141 - cubrid_lock_write example
- Example#1142 - cubrid_move_cursor example
- Example#1143 - cubrid_next_result example
- Example#1144 - cubrid_num_cols example
- Example#1145 - cubrid_num_rows example
- Example#1146 - cubrid_pconnect_with_url url without properties example
- Example#1147 - cubrid_pconnect_with_url url with properties example
- Example#1148 - cubrid_connect example
- Example#1149 - cubrid_prepare example
- Example#1150 - cubrid_put example
- Example#1151 - cubrid_rollback example
- Example#1152 - cubrid_schema example
- Example#1153 - cubrid_seq_drop example
- Example#1154 - cubrid_seq_insert example
- Example#1155 - cubrid_seq_put example
- Example#1156 - cubrid_set_add example
- Example#1157 - cubrid_get_db_parameter example
- Example#1158 - cubrid_set_drop example
- Example#1159 - cubrid_version example
- Example#1160 - cubrid_affected_rows example
- Example#1161 - cubrid_client_encoding example
- Example#1162 - cubrid_close example
- Example#1163 - cubrid_data_seek example
- Example#1164 - cubrid_db_name example
- Example#1165 - cubrid_errno example
- Example#1166 - cubrid_error example
- Example#1167 - cubrid_fetch_array example
- Example#1168 - cubrid_fetch_assoc example
- Example#1169 - cubrid_fetch_field example
- Example#1170 - cubrid_fetch_lengths example
- Example#1171 - cubrid_fetch_object example
- Example#1172 - cubrid_fetch_row example
- Example#1173 - cubrid_field_flags example
- Example#1174 - cubrid_field_len example
- Example#1175 - cubrid_field_name example
- Example#1176 - cubrid_field_seek example
- Example#1177 - cubrid_field_table example
- Example#1178 - cubrid_field_type example
- Example#1179 - cubrid_list_dbs example
- Example#1180 - cubrid_num_fields example
- Example#1181 - cubrid_ping example
- Example#1182 - Invalid Query
- Example#1183 - Valid Query
- Example#1184 - cubrid_real_escape_string example
- Example#1185 - cubrid_result example
- Example#1186 - cubrid_unbuffered_query example
- Example#1187 - cubrid_load_from_glo example
- Example#1188 - cubrid_new_glo example
- Example#1189 - cubrid_save_to_glo example
- Example#1190 - cubrid_send_glo example
- Example#1191 - Inserting a record in a dBase database
- Example#1192 - Closing a dBase database file
- Example#1193 - Creating a dBase database file
- Example#1194 - Showing header information for a dBase database file
- Example#1195 - Listing all the registered members in the database
- Example#1196 - dbase_numfields Example
- Example#1197 - Looping over all the records of the database
- Example#1198 - Opening a dBase database file
- Example#1199 - Emptying a dBase database
- Example#1200 - Updating a record in the database
- Example#1201 - ibase_backup example
- Example#1202 - ibase_backup example with arguments
- Example#1203 - ibase_blob_get example
- Example#1204 - ibase_blob_import example
- Example#1205 - ibase_connect example
- Example#1206 - ibase_execute example
- Example#1207 - ibase_fetch_object example
- Example#1208 - ibase_field_info example
- Example#1209 - ibase_name_result example
- Example#1210 - ibase_num_fields example
- Example#1211 - ibase_query example
- Example#1212 - ibase_restore example
- Example#1213 - ibase_restore example with arguments
- Example#1214 - ibase_service_attach example
- Example#1215 - ibase_service_attach example
- Example#1216 - ibase_service_attach example using hostname/port syntax
- Example#1217 - ibase_service_detach example
- Example#1218 - ibase_set_event_handler example
- Example#1219 - Retrieving the AUTOCOMMIT value for a connection
- Example#1220 - Setting the AUTOCOMMIT value for a connection
- Example#1221 - Binding PHP variables to a prepared statement
- Example#1222 - Calling stored procedures with IN and OUT parameters
- Example#1223 - Inserting a binary large object (BLOB) directly from a file
- Example#1224 - A db2_client_info example
- Example#1225 - Closing a connection
- Example#1226 - Retrieving an SQLSTATE value for a failed connection attempt
- Example#1227 - Retrieving the error message returned by a failed connection attempt
- Example#1228 - Creating a cataloged connection
- Example#1229 - Creating an uncataloged connection
- Example#1230 - Creating a connection with autocommit off by default
- Example#1231 - i5/OS best performance
- Example#1232 - Using trusted context
- Example#1233 - A db2_escape_string example
- Example#1234 - Creating a table with db2_exec
- Example#1235 - Executing a SELECT statement with a scrollable cursor
- Example#1236 - Returning XML data as an SQL ResultSet
- Example#1237 - Performing a "JOIN" with XML data
- Example#1238 - Returning SQL data as part of a larger XML document
- Example#1239 - Preparing and executing an SQL statement with parameter markers
- Example#1240 - Calling a stored procedure with an OUT parameter
- Example#1241 - Returning XML data as an SQL ResultSet
- Example#1242 - Performing a "JOIN" with XML data
- Example#1243 - Returning SQL data as part of a larger XML document
- Example#1244 - Iterating through a forward-only cursor
- Example#1245 - Retrieving specific rows with db2_fetch_array
from a scrollable cursor
- Example#1246 - Iterating through a forward-only cursor
- Example#1247 - Retrieving specific rows with db2_fetch_assoc
from a scrollable cursor
- Example#1248 - Iterating through a forward-only cursor
- Example#1249 - Retrieving specific rows with db2_fetch_both
from a scrollable cursor
- Example#1250 - A db2_fetch_object example
- Example#1251 - Iterating through a result set
- Example#1252 - i5/OS recommended alternatives to db2_fetch_row/db2_result
- Example#1253 - Setting and retrieving parameters through a connection resource
- Example#1254 - A db2_last_insert_id example
- Example#1255 - Iterating through different types of data
- Example#1256 - Calling a stored procedure that returns multiple result sets
- Example#1257 - Retrieving the number of fields in a result set
- Example#1258 - Closing a persistent connection
- Example#1259 - A db2_pconnect example
- Example#1260 - Using trusted context
- Example#1261 - Preparing and executing an SQL statement with parameter markers
- Example#1262 - A db2_result example
- Example#1263 - Rolling back a DELETE statement
- Example#1264 - A db2_server_info example
- Example#1265 - Setting one parameter with a connection resource
- Example#1266 - Setting multiple parameters with a connection resource
- Example#1267 - Setting multiple parameters with an invalid key
- Example#1268 - Setting multiple parameters with an invalid value
- Example#1269 - Setting multiple parameters with a connection resource and the wrong type
- Example#1270 - Setting multiple parameters with the wrong resource
- Example#1271 - Putting it all together
- Example#1272 - i5/OS cursors are read-only
- Example#1273 - MongoDB\Driver\Manager::__construct basic example
- Example#1274 - MongoDB\Driver\Manager::__construct basic examples
- Example#1275 - MongoDB\Driver\Manager::executeBulkWrite example
- Example#1276 - MongoDB\Driver\Manager::executeCommand with a command returning a single result document
- Example#1277 - MongoDB\Driver\Manager::executeCommand with a command returning a cursor
- Example#1278 - Limiting execution time for a command
- Example#1279 - MongoDB\Driver\Manager::executeQuery example
- Example#1280 - Limiting execution time for a query
- Example#1281 - MongoDB\Driver\Manager::getReadConcern example
- Example#1282 - MongoDB\Driver\Manager::getReadPreference example
- Example#1283 - MongoDB\Driver\Manager::getServers example
- Example#1284 - MongoDB\Driver\Manager::getWriteConcern example
- Example#1285 - Composing MongoDB\Driver\Command to provide a helper to create collections
- Example#1286 - MongoDB\Driver\Command::__construct example
- Example#1287 - MongoDB\Driver\Command::__construct example
- Example#1288 - MongoDB\Driver\Query::__construct example
- Example#1289 - Mixed write operations are grouped by type
- Example#1290 - Ordered write operations causing an error
- Example#1291 - MongoDB\Driver\BulkWrite::__construct example
- Example#1292 - MongoDB\Driver\BulkWrite::count example
- Example#1293 - MongoDB\Driver\BulkWrite::delete example
- Example#1294 - MongoDB\Driver\BulkWrite::insert example
- Example#1295 - MongoDB\Driver\BulkWrite::update example
- Example#1296 - MongoDB\Driver\WriteConcern::bsonSerialize with majority write concern
- Example#1297 - MongoDB\Driver\WriteConcern::bsonSerialize with wtimeout and journal
- Example#1298 - MongoDB\Driver\WriteConcern::__construct example
- Example#1299 - MongoDB\Driver\WriteConcern::getJournal example
- Example#1300 - MongoDB\Driver\WriteConcern::getW example
- Example#1301 - MongoDB\Driver\WriteConcern::getWtimeout example
- Example#1302 - MongoDB\Driver\WriteConcern::isDefault example
- Example#1303 - MongoDB\Driver\ReadPreference::bsonSerialize with primary read preference
- Example#1304 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and tag sets
- Example#1305 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and max staleness
- Example#1306 - MongoDB\Driver\ReadPreference::__construct example
- Example#1307 - MongoDB\Driver\ReadPreference::getMaxStalenessSeconds example
- Example#1308 - MongoDB\Driver\ReadPreference::getMode example
- Example#1309 - MongoDB\Driver\ReadPreference::getModeString example
- Example#1310 - MongoDB\Driver\ReadPreference::getTagSets example
- Example#1311 - MongoDB\Driver\ReadConcern::bsonSerialize with empty read concern
- Example#1312 - MongoDB\Driver\ReadConcern::bsonSerialize with local read concern
- Example#1313 - MongoDB\Driver\ReadConcern::__construct example
- Example#1314 - MongoDB\Driver\ReadConcern::getLevel example
- Example#1315 - MongoDB\Driver\ReadConcern::isDefault example
- Example#1316 - Reading a result set
- Example#1317 - Reading a result set for a tailable cursor
- Example#1318 - MongoDB\Driver\Cursor::getId example
- Example#1319 - MongoDB\Driver\Cursor::getServer example
- Example#1320 - MongoDB\Driver\Cursor::isDead example
- Example#1321 - MongoDB\Driver\Cursor::setTypeMap example
- Example#1322 - MongoDB\Driver\Cursor::toArray example
- Example#1323 - MongoDB\Driver\CursorId::__toString example
- Example#1324 - MongoDB\Driver\Server::getHost example
- Example#1325 - MongoDB\Driver\Server::getInfo example
- Example#1326 - MongoDB\Driver\Server::getLatency example
- Example#1327 - MongoDB\Driver\Server::getPort example
- Example#1328 - MongoDB\Driver\WriteConcernError::getCode example
- Example#1329 - MongoDB\Driver\WriteConcernError::getInfo example
- Example#1330 - MongoDB\Driver\WriteConcernError::getMessage example
- Example#1331 - MongoDB\Driver\WriteError::getCode example
- Example#1332 - MongoDB\Driver\WriteError::getIndex example
- Example#1333 - MongoDB\Driver\WriteError::getMessage example
- Example#1334 - MongoDB\Driver\WriteResult::getDeletedCount example
- Example#1335 - MongoDB\Driver\WriteResult::getInsertedCount example
- Example#1336 - MongoDB\Driver\WriteResult::getMatchedCount example
- Example#1337 - MongoDB\Driver\WriteResult::getModifiedCount example
- Example#1338 - MongoDB\Driver\WriteResult::getServer example
- Example#1339 - MongoDB\Driver\WriteResult::getUpsertedCount example
- Example#1340 - MongoDB\Driver\WriteResult::getUpsertedIds example
- Example#1341 - MongoDB\Driver\WriteResult::getWriteConcernError example
- Example#1342 - MongoDB\Driver\WriteResult::getWriteErrors with a single error
- Example#1343 - MongoDB\Driver\WriteResult::getWriteErrors with multiple errors
- Example#1344 - MongoDB\Driver\WriteResult::isAcknowledged with acknowledged write concern
- Example#1345 - MongoDB\Driver\WriteResult::isAcknowledged with unacknowledged write concern
- Example#1346 - MongoDB\BSON\fromJSON example
- Example#1347 - MongoDB\BSON\fromPHP example
- Example#1348 - MongoDB\BSON\toCanonicalExtendedJSON example
- Example#1349 - MongoDB\BSON\toJSON example
- Example#1350 - MongoDB\BSON\toPHP example
- Example#1351 - MongoDB\BSON\toRelaxedExtendedJSON example
- Example#1352 - MongoDB\BSON\Binary::__construct example
- Example#1353 - MongoDB\BSON\Binary::getData example
- Example#1354 - MongoDB\BSON\Binary::getType example
- Example#1355 - MongoDB\BSON\Binary::__toString example
- Example#1356 - MongoDB\BSON\Decimal128::__construct example
- Example#1357 - MongoDB\BSON\Decimal128::__toString example
- Example#1358 - MongoDB\BSON\Javascript::__construct example
- Example#1359 - MongoDB\BSON\Javascript::getCode example
- Example#1360 - MongoDB\BSON\Javascript::getScope example
- Example#1361 - MongoDB\BSON\Javascript::__toString example
- Example#1362 - MongoDB\BSON\MaxKey::__construct example
- Example#1363 - MongoDB\BSON\MinKey::__construct example
- Example#1364 - MongoDB\BSON\ObjectId::__construct example
- Example#1365 - MongoDB\BSON\ObjectId::getTimestamp example
- Example#1366 - MongoDB\BSON\ObjectId::__toString example
- Example#1367 - MongoDB\BSON\Regex::__construct example
- Example#1368 - MongoDB\BSON\Regex::getFlags example
- Example#1369 - MongoDB\BSON\Regex::getPattern example
- Example#1370 - MongoDB\BSON\Regex::__toString example
- Example#1371 - MongoDB\BSON\Timestamp::__construct example
- Example#1372 - MongoDB\BSON\Timestamp::__toString example
- Example#1373 - MongoDB\BSON\UTCDateTime::__construct example
- Example#1374 - MongoDB\BSON\UTCDatetime::toDateTime example
- Example#1375 - MongoDB\BSON\UTCDateTime::__toString example
- Example#1376 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for root document
- Example#1377 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for root document
- Example#1378 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for document field
- Example#1379 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for document field
- Example#1380 - MongoDB\BSON\Unserializable::bsonUnserialize example
- Example#1381 - MongoDB\BSON\Int64::__toString example
- Example#1382 - MongoDB\Driver\Exception\WriteException::getWriteResult example
- Example#1383 - Comparing the MySQL APIs
- Example#1384 - Configure commands for using mysqlnd or libmysqlclient
- Example#1385 - Unbuffered query example: mysqli
- Example#1386 - Unbuffered query example: pdo_mysql
- Example#1387 - Problems with setting the character set with SQL
- Example#1388 - Setting the character set example: mysqli
- Example#1389 - Setting the character set example: pdo_mysql
- Example#1390 - Easy migration from the old mysql extension
- Example#1391 - Object-oriented and procedural interface
- Example#1392 - Bad coding style
- Example#1393 - Special meaning of localhost
- Example#1394 - Setting defaults
- Example#1395 - Executing queries
- Example#1396 - Navigation through buffered results
- Example#1397 - Navigation through unbuffered results
- Example#1398 - Text protocol returns strings by default
- Example#1399 - Native data types with mysqlnd and connection option
- Example#1400 - Prepared statement
- Example#1401 - INSERT prepared once, executed multiple times
- Example#1402 - Less round trips using multi-INSERT SQL
- Example#1403 - Native datatypes
- Example#1404 - Output variable binding
- Example#1405 - Using mysqli_result to fetch results
- Example#1406 - Buffered result set for flexible read out
- Example#1407 - Calling a stored procedure
- Example#1408 - Using session variables
- Example#1409 - Fetching results from stored procedures
- Example#1410 - Stored Procedures and Prepared Statements
- Example#1411 - Stored Procedures and Prepared Statements using bind API
- Example#1412 - Multiple Statements
- Example#1413 - SQL Injection
- Example#1414 - Setting autocommit mode with SQL and through the API
- Example#1415 - Commit and rollback
- Example#1416 - Accessing result set meta data
- Example#1417 - Prepared statements metadata
- Example#1418 - $mysqli->affected_rows example
- Example#1419 - mysqli::autocommit example
- Example#1420 - mysqli::begin_transaction example
- Example#1421 - mysqli::change_user example
- Example#1422 - mysqli::character_set_name example
- Example#1423 - mysqli::commit example
- Example#1424 - $mysqli->connect_errno example
- Example#1425 - $mysqli->connect_error example
- Example#1426 - mysqli::__construct example
- Example#1427 - Extending mysqli class
- Example#1428 - Manual error handling
- Example#1429 - Generating a Trace File
- Example#1430 - mysqli->errno example
- Example#1431 - $mysqli->error_list example
- Example#1432 - $mysqli->error example
- Example#1433 - $mysqli->field_count example
- Example#1434 - mysqli::get_charset example
- Example#1435 - mysqli_get_client_info
- Example#1436 - mysqli_get_client_version
- Example#1437 - A mysqli_get_connection_stats 例程
- Example#1438 - $mysqli->host_info example
- Example#1439 - $mysqli->protocol_version example
- Example#1440 - $mysqli->server_info example
- Example#1441 - $mysqli->server_version example
- Example#1442 - $mysqli->info 例程
- Example#1443 - $mysqli->insert_id 例程
- Example#1444 - mysqli::kill 例程
- Example#1445 - mysqli::multi_query 例程
- Example#1446 - mysqli::ping 例程
- Example#1447 - A mysqli_poll 例程
- Example#1448 - mysqli::prepare 例程
- Example#1449 - mysqli::query example
- Example#1450 - mysqli::real_connect 例子
- Example#1451 - mysqli::real_escape_string 例程
- Example#1452 - mysqli::rollback example
- Example#1453 - mysqli::select_db example
- Example#1454 - mysqli::set_charset example
- Example#1455 - $mysqli->sqlstate 例程
- Example#1456 - mysqli::stat 例程
- Example#1457 - $mysqli->thread_id 例程
- Example#1458 - mysqli::use_result example
- Example#1459 - $mysqli->warning_count example
- Example#1460 - mysqli_stmt_affected_rows example
- Example#1461 - mysqli_stmt::bind_param example
- Example#1462 - Using ... to provide arguments
- Example#1463 - 面向对象风格
- Example#1464 - 过程化风格
- Example#1465 - 面向对象风格
- Example#1466 - 过程化风格
- Example#1467 - 面向对象风格
- Example#1468 - 过程化风格
- Example#1469 - 面向对象风格
- Example#1470 - 过程化风格
- Example#1471 - 面向对象风格
- Example#1472 - 过程化风格
- Example#1473 - Execute a prepared statement with bound variables
- Example#1474 - Execute a prepared statement with an array of values
- Example#1475 - 面向对象风格
- Example#1476 - 过程化风格
- Example#1477 - 面向对象风格
- Example#1478 - 过程化风格
- Example#1479 - 面向对象风格
- Example#1480 - 过程化风格
- Example#1481 - 面向对象风格
- Example#1482 - 过程化风格
- Example#1483 - 面向对象风格
- Example#1484 - 过程化风格
- Example#1485 - mysqli_stmt::prepare example
- Example#1486 - 面向对象风格
- Example#1487 - 过程化风格
- Example#1488 - 面向对象风格
- Example#1489 - 面向对象风格
- Example#1490 - 过程化风格
- Example#1491 - 面向对象风格
- Example#1492 - 过程化风格
- Example#1493 - Creation of a mysqli_result object
- Example#1494 - 面向对象风格
- Example#1495 - 过程化风格
- Example#1496 - mysqli::data_seek example
- Example#1497 - Adjusting the result pointer when iterating
- Example#1498 - mysqli_result::fetch_all example
- Example#1499 - mysqli_result::fetch_array example
- Example#1500 - mysqli_result::fetch_assoc example
- Example#1501 - Comparison of mysqli_result iterator and mysqli_result::fetch_assoc usage
- Example#1502 - mysqli_result::fetch_column example
- Example#1503 - 面向对象风格
- Example#1504 - 过程化风格
- Example#1505 - 面向对象风格
- Example#1506 - 过程化风格
- Example#1507 - 面向对象风格
- Example#1508 - 过程化风格
- Example#1509 - mysqli_result::fetch_object example
- Example#1510 - mysqli_result::fetch_row example
- Example#1511 - 面向对象风格
- Example#1512 - 过程化风格
- Example#1513 - 面向对象风格
- Example#1514 - 过程化风格
- Example#1515 - 面向对象风格
- Example#1516 - 过程化风格
- Example#1517 - 面向对象风格
- Example#1518 - 过程化风格
- Example#1519 - 面向对象风格
- Example#1520 - 过程化风格
- Example#1521 - Error reporting except bad index errors
- Example#1522 - mysqli_connect 例程
- Example#1523 - A mysqli_get_client_stats 例程
- Example#1524 - Connecting to a MySQL Server
- Example#1525 - Creating a Schema and Collection on the MySQL Server
- Example#1526 - Storing and Retrieving Data
- Example#1527 - Fetching and Iterating Multiple Documents
- Example#1528 - mysql_xdevapi\Expression example
- Example#1529 - URI examples
- Example#1530 - mysql_xdevapi\getSession example
- Example#1531 - mysql_xdevapi\RowResult::getWarnings example
- Example#1532 - mysql_xdevapi\RowResult::getWarningsCount example
- Example#1533 - mysql_xdevapi\Client::__construct example
- Example#1534 - mysql_xdevapi\Collection::add example
- Example#1535 - mysql_xdevapi\Collection::addOrReplaceOne example
- Example#1536 - mysql_xdevapi\Collection::getOne example
- Example#1537 - mysql_xdevapi\Collection::count example
- Example#1538 - mysql_xdevapi\Collection::createIndex example
- Example#1539 - mysql_xdevapi\Collection::dropIndex example
- Example#1540 - mysql_xdevapi\Collection::existsInDatabase example
- Example#1541 - mysql_xdevapi\Collection::find example
- Example#1542 - mysql_xdevapi\Collection::getName example
- Example#1543 - mysql_xdevapi\Collection::getOne example
- Example#1544 - mysql_xdevapi\Collection::getSchema example
- Example#1545 - mysql_xdevapi\Collection::getSession example
- Example#1546 - mysql_xdevapi\Collection::modify example
- Example#1547 - mysql_xdevapi\Collection::remove example
- Example#1548 - mysql_xdevapi\Collection::removeOne example
- Example#1549 - mysql_xdevapi\Collection::replaceOne example
- Example#1550 - mysql_xdevapi\CollectionAdd::__construct example
- Example#1551 - mysql_xdevapi\CollectionAdd::execute example
- Example#1552 - mysql_xdevapi\CollectionFind::bind example
- Example#1553 - CollectionFind example
- Example#1554 - CollectionFind example
- Example#1555 - mysql_xdevapi\CollectionFind::fields example
- Example#1556 - mysql_xdevapi\CollectionFind::groupBy example
- Example#1557 - mysql_xdevapi\CollectionFind::having example
- Example#1558 - mysql_xdevapi\CollectionFind::limit example
- Example#1559 - mysql_xdevapi\CollectionFind::lockExclusive example
- Example#1560 - mysql_xdevapi\CollectionFind::lockShared example
- Example#1561 - mysql_xdevapi\CollectionFind::offset example
- Example#1562 - mysql_xdevapi\CollectionFind::sort example
- Example#1563 - mysql_xdevapi\CollectionModify::arrayAppend example
- Example#1564 - mysql_xdevapi\CollectionModify::arrayInsert example
- Example#1565 - mysql_xdevapi\CollectionModify::bind example
- Example#1566 - mysql_xdevapi\CollectionModify::__construct example
- Example#1567 - mysql_xdevapi\CollectionModify::execute example
- Example#1568 - mysql_xdevapi\CollectionModify::limit example
- Example#1569 - mysql_xdevapi\CollectionModify::patch example
- Example#1570 - mysql_xdevapi\CollectionModify::replace example
- Example#1571 - mysql_xdevapi\CollectionModify::set example
- Example#1572 - mysql_xdevapi\CollectionModify::skip example
- Example#1573 - mysql_xdevapi\CollectionModify::sort example
- Example#1574 - mysql_xdevapi\CollectionModify::unset example
- Example#1575 - mysql_xdevapi\CollectionRemove::bind example
- Example#1576 - mysql_xdevapi\Collection::remove example
- Example#1577 - mysql_xdevapi\CollectionRemove::execute example
- Example#1578 - mysql_xdevapi\CollectionRemove::limit example
- Example#1579 - mysql_xdevapi\CollectionRemove::sort example
- Example#1580 - mysql_xdevapi\ColumnResult::__construct example
- Example#1581 - mysql_xdevapi\ColumnResult::getCharacterSetName example
- Example#1582 - mysql_xdevapi\ColumnResult::getCollationName example
- Example#1583 - mysql_xdevapi\ColumnResult::getColumnLabel example
- Example#1584 - mysql_xdevapi\ColumnResult::getColumnName example
- Example#1585 - mysql_xdevapi\ColumnResult::getFractionalDigits example
- Example#1586 - mysql_xdevapi\ColumnResult::getLength example
- Example#1587 - mysql_xdevapi\ColumnResult::getSchemaName example
- Example#1588 - mysql_xdevapi\ColumnResult::getTableLabel example
- Example#1589 - mysql_xdevapi\ColumnResult::getTableName example
- Example#1590 - mysql_xdevapi\ColumnResult::getType example
- Example#1591 - mysql_xdevapi\ColumnResult::isNumberSigned example
- Example#1592 - mysql_xdevapi\ColumnResult::isPadded example
- Example#1593 - mysql_xdevapi\CrudOperationBindable::bind example
- Example#1594 - mysql_xdevapi\CrudOperationLimitable::limit example
- Example#1595 - mysql_xdevapi\CrudOperationSkippable::skip example
- Example#1596 - mysql_xdevapi\CrudOperationSortable::sort example
- Example#1597 - mysql_xdevapi\DatabaseObject::existsInDatabase example
- Example#1598 - mysql_xdevapi\DatabaseObject::getName example
- Example#1599 - mysql_xdevapi\DatabaseObject::getSession example
- Example#1600 - A DocResult example
- Example#1601 - mysql_xdevapi\DocResult::fetchAll example
- Example#1602 - mysql_xdevapi\DocResult::fetchOne example
- Example#1603 - mysql_xdevapi\DocResult::getWarnings example
- Example#1604 - mysql_xdevapi\DocResult::getWarningsCount example
- Example#1605 - execute() examples
- Example#1606 - mysql_xdevapi\ExecutionStatus::__construct example
- Example#1607 - mysql_xdevapi\Expression::__construct example
- Example#1608 - mysql_xdevapi\Result::__construct example
- Example#1609 - mysql_xdevapi\Result::getAffectedItemsCount example
- Example#1610 - mysql_xdevapi\Result::getAutoIncrementValue example
- Example#1611 - mysql_xdevapi\Result::getGeneratedIds example
- Example#1612 - mysql_xdevapi\RowResult::getWarnings example
- Example#1613 - mysql_xdevapi\RowResult::getWarningsCount example
- Example#1614 - mysql_xdevapi\RowResult::__construct example
- Example#1615 - mysql_xdevapi\RowResult::fetchAll example
- Example#1616 - mysql_xdevapi\RowResult::fetchOne example
- Example#1617 - mysql_xdevapi\RowResult::getColumnsCount example
- Example#1618 - mysql_xdevapi\RowResult::getColumnNames example
- Example#1619 - mysql_xdevapi\RowResult::getColumns example
- Example#1620 - mysql_xdevapi\RowResult::getWarnings example
- Example#1621 - mysql_xdevapi\RowResult::getWarningsCount example
- Example#1622 - Schema::__construct example
- Example#1623 - Schema::createCollection example
- Example#1624 - Schema::createCollection validate parameter example
- Example#1625 - Schema::dropCollection example
- Example#1626 - Schema::existsInDatabase example
- Example#1627 - Schema::getCollection example
- Example#1628 - Schema::getCollectionAsTable example
- Example#1629 - mysql_xdevapi\Schema::getCollections example
- Example#1630 - mysql_xdevapi\Schema::getName example
- Example#1631 - mysql_xdevapi\Schema::getSession example
- Example#1632 - mysql_xdevapi\Schema::getTable example
- Example#1633 - mysql_xdevapi\Schema::getTables example
- Example#1634 - mysql_xdevapi\Session::getSchema example
- Example#1635 - mysql_xdevapi\Session::close example
- Example#1636 - mysql_xdevapi\Session::commit example
- Example#1637 - mysql_xdevapi\Session::__construct example
- Example#1638 - mysql_xdevapi\Session::createSchema example
- Example#1639 - mysql_xdevapi\Session::dropSchema example
- Example#1640 - mysql_xdevapi\Session::generateUuid example
- Example#1641 - mysql_xdevapi\Session::getSchema example
- Example#1642 - mysql_xdevapi\Session::getSchema example
- Example#1643 - mysql_xdevapi\Session::getSchemas example
- Example#1644 - mysql_xdevapi\Session::getServerVersion example
- Example#1645 - mysql_xdevapi\Session::listClients example
- Example#1646 - mysql_xdevapi\Session::quoteName example
- Example#1647 - mysql_xdevapi\Session::releaseSavepoint example
- Example#1648 - mysql_xdevapi\Session::rollback example
- Example#1649 - mysql_xdevapi\Session::rollbackTo example
- Example#1650 - mysql_xdevapi\Session::setSavepoint example
- Example#1651 - mysql_xdevapi\Session::sql example
- Example#1652 - mysql_xdevapi\Session::startTransaction example
- Example#1653 - mysql_xdevapi\SqlStatement::bind example
- Example#1654 - mysql_xdevapi\SqlStatement::__construct example
- Example#1655 - mysql_xdevapi\SqlStatement::execute example
- Example#1656 - mysql_xdevapi\SqlStatement::getNextResult example
- Example#1657 - mysql_xdevapi\SqlStatement::getResult example
- Example#1658 - mysql_xdevapi\SqlStatement::hasMoreResults example
- Example#1659 - mysql_xdevapi\SqlStatementResult::__construct example
- Example#1660 - mysql_xdevapi\SqlStatementResult::fetchAll example
- Example#1661 - mysql_xdevapi\SqlStatementResult::fetchOne example
- Example#1662 - mysql_xdevapi\SqlStatementResult::getAffectedItemsCount example
- Example#1663 - mysql_xdevapi\SqlStatementResult::getColumnsCount example
- Example#1664 - mysql_xdevapi\SqlStatementResult::getColumnNames example
- Example#1665 - mysql_xdevapi\SqlStatementResult::getColumns example
- Example#1666 - mysql_xdevapi\SqlStatementResult::getGeneratedIds example
- Example#1667 - mysql_xdevapi\SqlStatementResult::getLastInsertId example
- Example#1668 - mysql_xdevapi\SqlStatementResult::getWarnings example
- Example#1669 - mysql_xdevapi\SqlStatementResult::getWarningsCount example
- Example#1670 - mysql_xdevapi\SqlStatementResult::hasData example
- Example#1671 - mysql_xdevapi\SqlStatementResult::nextResult example
- Example#1672 - mysql_xdevapi\Statement::__construct example
- Example#1673 - mysql_xdevapi\Statement::getNextResult example
- Example#1674 - mysql_xdevapi\Statement::getResult example
- Example#1675 - mysql_xdevapi\Statement::hasMoreResults example
- Example#1676 - mysql_xdevapi\Table::__construct example
- Example#1677 - mysql_xdevapi\Table::count example
- Example#1678 - mysql_xdevapi\Table::delete example
- Example#1679 - mysql_xdevapi\Table::existsInDatabase example
- Example#1680 - mysql_xdevapi\Table::getName example
- Example#1681 - mysql_xdevapi\Table::getSchema example
- Example#1682 - mysql_xdevapi\Table::getSession example
- Example#1683 - mysql_xdevapi\Table::insert example
- Example#1684 - mysql_xdevapi\Table::isView example
- Example#1685 - mysql_xdevapi\Table::count example
- Example#1686 - mysql_xdevapi\Table::update example
- Example#1687 - mysql_xdevapi\TableDelete::bind example
- Example#1688 - mysql_xdevapi\TableDelete::__construct example
- Example#1689 - mysql_xdevapi\TableDelete::execute example
- Example#1690 - mysql_xdevapi\TableDelete::limit example
- Example#1691 - mysql_xdevapi\TableDelete::orderBy example
- Example#1692 - mysql_xdevapi\TableDelete::where example
- Example#1693 - mysql_xdevapi\TableInsert::__construct example
- Example#1694 - mysql_xdevapi\TableInsert::execute example
- Example#1695 - mysql_xdevapi\TableInsert::values example
- Example#1696 - mysql_xdevapi\TableSelect::bind example
- Example#1697 - mysql_xdevapi\TableSelect::__construct example
- Example#1698 - mysql_xdevapi\TableSelect::execute example
- Example#1699 - mysql_xdevapi\TableSelect::groupBy example
- Example#1700 - mysql_xdevapi\TableSelect::having example
- Example#1701 - mysql_xdevapi\TableSelect::limit example
- Example#1702 - mysql_xdevapi\TableSelect::lockExclusive example
- Example#1703 - mysql_xdevapi\TableSelect::lockShared example
- Example#1704 - mysql_xdevapi\TableSelect::offset example
- Example#1705 - mysql_xdevapi\TableSelect::orderBy example
- Example#1706 - mysql_xdevapi\TableSelect::where example
- Example#1707 - mysql_xdevapi\TableUpdate::bind example
- Example#1708 - mysql_xdevapi\TableUpdate::__construct example
- Example#1709 - mysql_xdevapi\TableUpdate::execute example
- Example#1710 - mysql_xdevapi\TableUpdate::limit example
- Example#1711 - mysql_xdevapi\TableUpdate::orderby example
- Example#1712 - mysql_xdevapi\TableUpdate::set example
- Example#1713 - mysql_xdevapi\TableUpdate::where example
- Example#1714 - mysql_xdevapi\Warning::__construct example
- Example#1715 - MySQL 扩展概述范例
- Example#1716 - mysql_affected_rows 例子
- Example#1717 - 使用事务处理的 mysql_affected_rows 例子
- Example#1718 - mysql_client_encoding 例子
- Example#1719 - mysql_close 例子
- Example#1720 - mysql_connect 例子
- Example#1721 - mysql_connect 例子:使用 hostname:port 语法
- Example#1722 - mysql_connect 例子:使用 ":/path/to/socket" 语法
- Example#1723 - 替代 mysql_create_db 的例子
- Example#1724 - mysql_data_seek 例子
- Example#1725 - mysql_db_name 例子
- Example#1726 - mysql_drop_db alternative example
- Example#1727 - mysql_errno 例子
- Example#1728 - mysql_error 例子
- Example#1729 - mysql_escape_string 例子
- Example#1730 - msql_fetch_array 示例
- Example#1731 - 扩展的 mysql_fetch_assoc 例子
- Example#1732 - mysql_fetch_field
- Example#1733 - mysql_fetch_field example
- Example#1734 - mysql_fetch_object example
- Example#1735 - mysql_fetch_object example
- Example#1736 - Fetching one row with mysql_fetch_row
- Example#1737 - mysql_field_name 例子
- Example#1738 - mysql_field_name example
- Example#1739 - mysql_field_type 例子
- Example#1740 - mysql_field_type example
- Example#1741 - A mysql_free_result example
- Example#1742 - mysql_get_client_info 例子
- Example#1743 - mysql_get_host_info 例子
- Example#1744 - mysql_get_proto_info 例子
- Example#1745 - mysql_get_server_info 例子
- Example#1746 - 相关的 MySQL 语句
- Example#1747 - mysql_insert_id 例子
- Example#1748 - mysql_list_dbs 例子
- Example#1749 - mysql_list_fields 例子
- Example#1750 - mysql_list_processes 例子
- Example#1751 - mysql_list_tables 例子
- Example#1752 - mysql_num_rows 例子
- Example#1753 - 无效的查询
- Example#1754 - 有效的查询
- Example#1755 - mysql_real_escape_string 例子
- Example#1756 - mysql_real_escape_string requires a connection example
- Example#1757 - An example SQL Injection Attack
- Example#1758 - mysql_result 例子
- Example#1759 - mysql_select_db 例子
- Example#1760 - mysql_select_db example
- Example#1761 - mysql_stat 例子
- Example#1762 - mysql_tablename example
- Example#1763 - mysql_thread_id 例子
- Example#1764 - Basic query
- Example#1765 - Inserting with bind variables
- Example#1766 - Binding in the WHERE clause of a query
- Example#1767 - Inserting and fetching a CLOB
- Example#1768 - Using a PL/SQL stored function
- Example#1769 - Using a PL/SQL stored procedure
- Example#1770 - Calling a PL/SQL function that returns a REF CURSOR
- Example#1771 -
- Example#1772 - user_oci8_probes.d for tracing all user-level PHP OCI8 Static Probes with DTrace
- Example#1773 - oci_bind_array_by_name example
- Example#1774 - oci_bind_by_name 例子
- Example#1775 - oci_bind_by_name 例子
- Example#1776 - oci_bind_by_name 例子
- Example#1777 - Inserting data with oci_bind_by_name
- Example#1778 - Binding once for multiple executions
- Example#1779 - Binding with a foreach loop
- Example#1780 - Binding in a WHERE clause
- Example#1781 - Binding with a LIKE clause
- Example#1782 - Binding with REGEXP_LIKE
- Example#1783 - Binding Multiple Values in an IN Clause
- Example#1784 - Binding a ROWID returned by a query
- Example#1785 - Binding a ROWID on INSERT
- Example#1786 - Binding for a PL/SQL stored function
- Example#1787 - Binding parameters for a PL/SQL stored procedure
- Example#1788 - Binding a CLOB column
- Example#1789 - Binding a PL/SQL BOOLEAN
- Example#1790 - oci_client_version example
- Example#1791 - Closing a connection
- Example#1792 - Database connections are not closed until all references are closed
- Example#1793 - Closing a connection opened more than once
- Example#1794 - Connections are closed when variables go out of scope
- Example#1795 - oci_commit 例子
- Example#1796 - oci_commit example
- Example#1797 - oci_connect 例子
- Example#1798 - Basic oci_connect using Easy Connect syntax
- Example#1799 - Basic oci_connect using a Network Connect name
- Example#1800 - oci_connect with an explicit character set
- Example#1801 - Using multiple calls to oci_connect
- Example#1802 - oci_define_by_name 例子
- Example#1803 - 连接错误后显示 Oracle 错误信息
- Example#1804 - 语法解析错误后显示 Oracle 错误信息
- Example#1805 - 执行错误后显示 Oracle 错误信息和出错的语句
- Example#1806 - oci_execute for queries
- Example#1807 - oci_execute without specifying a mode example
- Example#1808 - oci_execute with OCI_NO_AUTO_COMMIT example
- Example#1809 - oci_execute with different commit modes example
- Example#1810 - oci_execute with
OCI_DESCRIBE_ONLY example
- Example#1811 - oci_fetch_all 例子
- Example#1812 - oci_fetch_all example
- Example#1813 - oci_fetch_all example with OCI_FETCHSTATEMENT_BY_ROW
- Example#1814 - oci_fetch_all with OCI_NUM
- Example#1815 - oci_fetch_array with OCI_BOTH
- Example#1816 - oci_fetch_array with OCI_NUM
- Example#1817 - oci_fetch_array with OCI_ASSOC
- Example#1818 - oci_fetch_array with OCI_RETURN_NULLS
- Example#1819 - oci_fetch_array with OCI_RETURN_LOBS
- Example#1820 - oci_fetch_array with case sensitive column names
- Example#1821 - oci_fetch_array with columns having duplicate names
- Example#1822 - oci_fetch_array with DATE columns
- Example#1823 - oci_fetch_array with REF CURSOR
- Example#1824 - Pagination with oci_fetch_array using a LIMIT-like query
- Example#1825 - oci_fetch_array with Oracle Database Implicit Result Sets
- Example#1826 - oci_fetch_assoc Example
- Example#1827 - oci_fetch_object example
- Example#1828 - oci_fetch_object with case sensitive column names
- Example#1829 - oci_fetch_object with LOBs
- Example#1830 - oci_fetch_row Example
- Example#1831 - oci_fetch with defined variables
- Example#1832 - oci_fetch with oci_result
- Example#1833 - oci_field_name 例子
- Example#1834 - oci_field_size例子
- Example#1835 - oci_field_type 例子
- Example#1836 - Fetching Implicit Result Sets in a loop
- Example#1837 - Getting child statement handles individually
- Example#1838 - Explicitly setting the Prefetch Count
- Example#1839 - Implicit Result Set example without using oci_get_implicit_resultset
- Example#1840 - oci_new_connect 例子
- Example#1841 - oci_new_connect example
- Example#1842 - 在 Oracle 的存储过程中使用 REF CURSOR
- Example#1843 - 在 Oracle 的 select 语句中使用 REF CURSOR
- Example#1844 - oci_new_descriptor 例子
- Example#1845 - oci_new_descriptor 例子
- Example#1846 - oci_num_fields 例子
- Example#1847 - oci_num_rows 例子
- Example#1848 - oci_rollback example
- Example#1849 - Rolling back to a SAVEPOINT example
- Example#1850 - oci_server_version 例子
- Example#1851 - Setting the action
- Example#1852 - Setting the timeout
- Example#1853 - Setting the client identifier to the application user
- Example#1854 - Setting the client information
- Example#1855 - Setting the DBOP
- Example#1856 - Two scripts can use different versions of myfunc() at the same time
- Example#1857 - Setting the module name
- Example#1858 - Changing the LOB prefetch value for a query
- Example#1859 - Changing the default prefetch value for a query
- Example#1860 - Changing the default prefetch for a REF CURSOR fetch
- Example#1861 - Setting the prefetch value when passing a REF CURSOR back to Oracle
- Example#1862 - oci_statement_type 例子
- Example#1863 - PostgreSQL extension overview example
- Example#1864 - PostgreSQL user defined functions example
- Example#1865 - pg_affected_rows 例子
- Example#1866 - pg_close 例子
- Example#1867 - 使用 pg_connect
- Example#1868 - pg_connection_busy 例子
- Example#1869 - pg_connection_reset 例子
- Example#1870 - pg_connection_status 例子
- Example#1871 - pg_connection_status 例子
- Example#1872 - pg_convert example
- Example#1873 - pg_copy_from example
- Example#1874 - pg_dbname 例子
- Example#1875 - pg_delete 例子
- Example#1876 - pg_end_copy 例子
- Example#1877 - pg_escape_identifier example
- Example#1878 - pg_escape_literal example
- Example#1879 - Using pg_execute
- Example#1880 - pg_fetch_all_columns example
- Example#1881 - pg_fetch_all 例子
- Example#1882 - pg_fetch_array
- Example#1883 - pg_fetch_assoc 例子
- Example#1884 - pg_fetch_object
- Example#1885 - pg_fetch_row 例子
- Example#1886 - pg_field_is_null 例子
- Example#1887 - 获取字段信息
- Example#1888 - Getting table information about a field
- Example#1889 - Getting information about fields
- Example#1890 - pg_free_result example
- Example#1891 - PostgreSQL NOTIFY 消息
- Example#1892 - PostgreSQL 后端 PID
- Example#1893 - pg_insert example
- Example#1894 - pg_last_notice example
- Example#1895 - pg_lo_export example
- Example#1896 - pg_lo_import 例子
- Example#1897 - pg_lo_truncate example
- Example#1898 - pg_lo_unlink example
- Example#1899 - 取得表的元数据
- Example#1900 - pg_parameter_status example
- Example#1901 - Using pg_pconnect
- Example#1902 - pg_ping
- Example#1903 - Using pg_prepare
- Example#1904 - pg_put_line 例子
- Example#1905 - Using pg_query_params
- Example#1906 - pg_result_error_field example
- Example#1907 - pg_select example
- Example#1908 - Using pg_send_execute
- Example#1909 - Using pg_send_prepare
- Example#1910 - Using pg_send_query_params
- Example#1911 - 异步查询
- Example#1912 - pg_set_error_verbosity example
- Example#1913 - pg_transaction_status example
- Example#1914 - pg_update example
- Example#1915 - pg_version example
- Example#1916 - Backup an existing database
- Example#1917 - SQLite3::changes example
- Example#1918 - SQLite3::close example
- Example#1919 - SQLite3::__construct example
- Example#1920 - max_length aggregation function example
- Example#1921 - SQLite3::createCollation example
- Example#1922 - SQLite3::createFunction example
- Example#1923 - SQLite3::enableExceptions example
- Example#1924 - SQLite3::exec example
- Example#1925 - SQLite3::loadExtension example
- Example#1926 - SQLite3::open example
- Example#1927 - SQLite3::openBlob example
- Example#1928 - Incrementally writing a BLOB
- Example#1929 - SQLite3::prepare example
- Example#1930 - SQLite3::query example
- Example#1931 - SQLite3::querySingle example
- Example#1932 - SQLite3::setAuthorizer example
- Example#1933 - SQLite3::version example
- Example#1934 - SQLite3Stmt::bindParam Usage
- Example#1935 - SQLite3Stmt::bindValue example
- Example#1936 - Inspecting the expanded SQL
- Example#1937 - sqlsrv_begin_transaction example
- Example#1938 - sqlsrv_cancel example
- Example#1939 - sqlsrv_client_info example
- Example#1940 - sqlsrv_close example
- Example#1941 - sqlsrv_commit example
- Example#1942 - Connect using Windows Authentication.
- Example#1943 - Connect by specifying a user name and password.
- Example#1944 - Connect on a specified port.
- Example#1945 - functionname example
- Example#1946 - sqlsrv_execute example
- Example#1947 - Retrieving an associative array.
- Example#1948 - Retrieving a numeric array.
- Example#1949 - sqlsrv_fetch_object example
- Example#1950 - sqlsrv_fetch example
- Example#1951 - sqlsrv_field_metadata example
- Example#1952 - sqlsrv_free_stmt example
- Example#1953 - sqlsrv_get_field example
- Example#1954 - sqlsrv_has_rows example
- Example#1955 - sqlsrv_next_result example
- Example#1956 - sqlsrv_num_fields example
- Example#1957 - sqlsrv_num_rows example
- Example#1958 - sqlsrv_prepare example
- Example#1959 - sqlsrv_query example
- Example#1960 - sqlsrv_rollback example
- Example#1961 - sqlsrv_rows_affected example
- Example#1962 - sqlsrv_send_stream_data example
- Example#1963 - sqlsrv_server_info example
- Example#1964 - cal_days_in_month example
- Example#1965 - cal_from_jd example
- Example#1966 - cal_info example
- Example#1967 - easter_date example
- Example#1968 - easter_days example
- Example#1969 - Calendar functions
- Example#1970 - jdtojewish Example
- Example#1971 - DateTimeImmutable::add/sub add intervals which cover elapsed time
- Example#1972 - DateTimeImmutable::modify and strtotime increment or decrement individual component values
- Example#1973 - Adding or subtracting times can over- or underflow dates
- Example#1974 - DateTime::add 例程
- Example#1975 - Further DateTime::add 例程
- Example#1976 - 当在 DateTime 上加月的时候要注意
- Example#1977 - DateTime::__construct 例程
- Example#1978 - DateTime::__construct 的复杂用法
- Example#1979 - DateTime::createFromFormat 例程
- Example#1980 - DateTime::createFromFormat 的复杂用法
- Example#1981 - 格式化字符串中包含了需要进行转义的字符
- Example#1982 - Creating a mutable date time object
- Example#1983 - Creating a mutable date time object
- Example#1984 - DateTime::getLastErrors 例程
- Example#1985 - DateTime::modify 例程
- Example#1986 - 增加或者减少月份的时候需要注意
- Example#1987 - DateTime::setDate 例程
- Example#1988 - 超出范围的部分会向上一级增加
- Example#1989 - DateTime::setISODate 例程
- Example#1990 - 超出有效范围的部分,会加到上一级
- Example#1991 - 找出来某个周所属的月份
- Example#1992 - DateTime::setTime 例程
- Example#1993 - 超出有效范围的部分会增加到上一级
- Example#1994 - DateTime::setTimestamp 例程
- Example#1995 - PHP 5.2 之后的版本中,DateTime::setTimestamp 替代方案
- Example#1996 - DateTime::setTimeZone 例程
- Example#1997 - DateTime::sub 例程
- Example#1998 - Further DateTime::sub 例程
- Example#1999 - 减去一定量的月份的时候需要注意
- Example#2000 - Creating an immutable date time object
- Example#2001 - Creating an immutable date time object
- Example#2002 - DateTime::diff example
- Example#2003 - DateTime object comparison
- Example#2004 - DateTime::format example
- Example#2005 - DateTime::getOffset example
- Example#2006 - DateTime::getTimestamp example
- Example#2007 - DateTime::getTimezone example
- Example#2008 - Catching errors when instantiating DateTimeZone
- Example#2009 - DateTimeZone::getLocation 函数的范例:
- Example#2010 - DateTimeZone::getOffset 例子
- Example#2011 - A timezone_transitions_get example
- Example#2012 - timezone_abbreviations_list 函数的范例:
- Example#2013 - timezone_identifiers_list 函数的范例:
- Example#2014 - DateInterval example
- Example#2015 - Parsing valid date intervals
- Example#2016 - DateInterval example
- Example#2017 - DateInterval and carry over points
- Example#2018 - DateInterval and
DateTime::diff with the %a and %d modifiers
- Example#2019 - DatePeriod example
- Example#2020 - DatePeriod example with DatePeriod::EXCLUDE_START_DATE
- Example#2021 - DatePeriod::getDateInterval example
- Example#2022 - DatePeriod::getEndDate example
- Example#2023 - DatePeriod::getEndDate without an end date
- Example#2024 - DatePeriod::getStartDate example
- Example#2025 - checkdate 例子
- Example#2026 - 获取默认时区
- Example#2027 - 获取一个时区的简写
- Example#2028 - 获取默认时区
- Example#2029 - date_parse_from_format example
- Example#2030 - date_parse 示例
- Example#2031 - date_parse 使用相对格式
- Example#2032 - A date_sun_info example
- Example#2033 - Polar night
- Example#2034 - Midnight sun
- Example#2035 - date_sunrise 例子
- Example#2036 - date_sunset 例子
- Example#2037 - date 例子
- Example#2038 - 在 date 中转义字符
- Example#2039 - date 和 mktime 例子
- Example#2040 - date 格式举例
- Example#2041 - date 函数示例
- Example#2042 - 对 date 函数中的格式字符串进行转义
- Example#2043 - date 和 mktime 联合使用示例
- Example#2044 - date 函数格式化
- Example#2045 - getdate 例子
- Example#2046 - gettimeofday 例子
- Example#2047 - gmdate 例子
- Example#2048 - gmmktime 在 Windows 中的边界
- Example#2049 - gmstrftime 例子
- Example#2050 - localtime 例子
- Example#2051 - 用 microtime 对脚本的运行计时
- Example#2052 - 基本例子
- Example#2053 - mktime 例子
- Example#2054 - 下个月的最后一天
- Example#2055 - strftime 区域的例子
- Example#2056 - ISO 8601:1988 week number example
- Example#2057 - %e 修改器跨平台兼容的例子
- Example#2058 - 显示所有已知和未知的格式
- Example#2059 - strptime 例子
- Example#2060 - strtotime 例子
- Example#2061 - 失败检查
- Example#2062 - time 例子
- Example#2063 - A timezone_name_from_abbr example
- Example#2064 - 获取 timezonedb 版本
- Example#2065 - Measure several code blocks execution and get the total
- Example#2066 - Closing an open file descriptor
- Example#2067 - Setting and clearing a lock
- Example#2068 - Opening a file descriptor
- Example#2069 - Positioning in a file
- Example#2070 - Setting the baud rate on a serial port
- Example#2071 - chdir 例子
- Example#2072 - chroot example
- Example#2073 - closedir 例子
- Example#2074 - dir 示例
- Example#2075 - getcwd 例子
- Example#2076 - opendir 例子
- Example#2077 - 列出目录中的所有文件
- Example#2078 - 列出当前目录的所有文件并去掉 . 和 ..
- Example#2079 - 一个简单的 scandir 例子
- Example#2080 - scandir 在 PHP 4 中的实现
- Example#2081 - finfo_buffer 函数例程
- Example#2082 - finfo_file 例程
- Example#2083 - 面向对象风格
- Example#2084 - 过程化风格
- Example#2085 - mime_content_type 示例
- Example#2086 - basename 例子
- Example#2087 - 改变文件所属的组
- Example#2088 - 简单的 chown 用法
- Example#2089 - clearstatcache 例子
- Example#2090 - copy 例子
- Example#2091 - dirname 例子
- Example#2092 - disk_free_space 例子
- Example#2093 - disk_total_space 例子
- Example#2094 - 一个简单 fclose 例子
- Example#2095 - fdatasync example
- Example#2096 - 处理 feof 的超时
- Example#2097 - 使用无效文件指针的 feof 例子
- Example#2098 - File write example using fflush
- Example#2099 - 一个 fgetc 例子
- Example#2100 - 读取并显示 CSV 文件的整个内容
- Example#2101 - 逐行读取文件
- Example#2102 - 一行行读取一个 PHP 文件
- Example#2103 - 测试一个文件是否存在
- Example#2104 - 获取并输出网站首页 HTML 源码
- Example#2105 - 在 include_path 里搜索
- Example#2106 - 读取文件一小节
- Example#2107 - 使用 stream 上下文(context)
- Example#2108 - Simple usage example
- Example#2109 - Using flags
- Example#2110 - file 例子
- Example#2111 - fileatime 例子
- Example#2112 - filectime 例子
- Example#2113 - 查找文件所在的组
- Example#2114 - 将某个文件和当前文件的 inode 进行对比
- Example#2115 - filemtime 例子
- Example#2116 - 找到文件的所有者
- Example#2117 - 以八进制的形式显示文件的权限
- Example#2118 - 输出全部权限
- Example#2119 - filesize 例子
- Example#2120 - filetype 例子
- Example#2121 - flock 例子
- Example#2122 - flock 使用 LOCK_NB 选项
- Example#2123 - 用 shell 中的通配符模式匹配来检查颜色名称
- Example#2124 - fopen 例子
- Example#2125 - 对二进制文件使用 fpassthru
- Example#2126 - fputcsv 例子
- Example#2127 - 一个简单的 fread 例子
- Example#2128 - Binary fread example
- Example#2129 - Remote fread examples
- Example#2130 - fscanf 例子
- Example#2131 - users.txt 的内容
- Example#2132 - fseek 例子
- Example#2133 - fstat 例子
- Example#2134 - fsync example
- Example#2135 - ftell 例子
- Example#2136 - File truncation example
- Example#2137 - 一个简单的 fwrite 例子
- Example#2138 - 怎样用 glob 方便地替代
opendir 和相关函数
- Example#2139 - is_dir 例子
- Example#2140 - is_executable 例子
- Example#2141 - is_file 例子
- Example#2142 - 创建并确认一个文件是否为符号连接
- Example#2143 - is_readable 例子
- Example#2144 - is_uploaded_file 例子
- Example#2145 - is_writable 例子
- Example#2146 - 更改符号链接的所有组
- Example#2147 - Changing the owner of a symbolic link
- Example#2148 - Creating a simple hard link
- Example#2149 - linkinfo 例子
- Example#2150 - stat 和 lstat 的对照
- Example#2151 - mkdir 例子
- Example#2152 - 通过 recursive 参数使用 mkdir
- Example#2153 - Uploading multiple files
- Example#2154 - sample.ini 的内容
- Example#2155 - parse_ini_file 例子
- Example#2156 - parse_ini_file parsing a php.ini file
- Example#2157 - pathinfo 例子
- Example#2158 - pathinfo 对比空扩展名和无扩展名之间区别的示例
- Example#2159 - pathinfo 形如 .file 的示例
- Example#2160 - pclose 例子
- Example#2161 - popen 例子
- Example#2162 - popen 例子
- Example#2163 - 使用 readfile 强制下载
- Example#2164 - readlink 例
- Example#2165 - realpath_cache_get example
- Example#2166 - realpath_cache_size example
- Example#2167 - realpath 例子
- Example#2168 - Windows 上的 realpath
- Example#2169 - rename 例子
- Example#2170 - rewind overwriting example
- Example#2171 - rmdir 例子
- Example#2172 - stat 例子
- Example#2173 - Using stat information together with touch
- Example#2174 - 创建一个符号连接
- Example#2175 - tempnam 例子
- Example#2176 - tmpfile 例子
- Example#2177 - touch 例子
- Example#2178 - 使用 mtime 参数的 touch
- Example#2179 - umask 例子
- Example#2180 - 基本的 unlink 用法
- Example#2181 - Example usage of inotify
- Example#2182 - Checks if system administrator has signed the file
- Example#2183 - Prints names of all extended attributes of file
- Example#2184 - Removes all extended attributes of a file
- Example#2185 - Sets extended attributes on .wav file
- Example#2186 - xattr_supported example
- Example#2187 - xdiff_file_bdiff_size example
- Example#2188 - xdiff_file_bdiff example
- Example#2189 - xdiff_file_bpatch example
- Example#2190 - xdiff_file_diff_binary example
- Example#2191 - xdiff_file_diff example
- Example#2192 - xdiff_file_merge3 example
- Example#2193 - xdiff_file_patch_binary example
- Example#2194 - xdiff_file_patch example
- Example#2195 - Patch reversing example
- Example#2196 - xdiff_file_rabdiff example
- Example#2197 - xdiff_string_bdiff_size example
- Example#2198 - xdiff_string_diff example
- Example#2199 - xdiff_string_patch example
- Example#2200 - Enchant Usage Example
- Example#2201 - List the backends provided by the given broker
- Example#2202 - A enchant_broker_dict_exists example
- Example#2203 - List all available dictionaries for one broker
- Example#2204 - A enchant_broker_request_dict example
- Example#2205 - Adding a word to a PWL
- Example#2206 - A enchant_dict_describe example
- Example#2207 - A enchant_dict_quick_check example
- Example#2208 - A enchant_dict_suggest example
- Example#2209 - Usage example.
- Example#2210 - Using Gender\Gender::country
- Example#2211 - bindtextdomain example
- Example#2212 - gettext-check
- Example#2213 - ngettext example
- Example#2214 - iconv_get_encoding 例子
- Example#2215 - iconv_mime_decode_headers 例子
- Example#2216 - iconv_mime_decode实例
- Example#2217 - iconv_mime_encode example
- Example#2218 - iconv_set_encoding 例子
- Example#2219 - iconv 例子
- Example#2220 - ob_iconv_handler 例子:
- Example#2221 - Example of using the procedural API
- Example#2222 - Example of using the object-oriented API
- Example#2223 - FRENCH_COLLATION rules
- Example#2224 - ALTERNATE_HANDLING rules
- Example#2225 - CASE_FIRST rules
- Example#2226 - CASE_LEVEL rules
- Example#2227 - collator_asort example
- Example#2228 - collator_compare example
- Example#2229 - Comparing strings without diacritics or case-sensitivity
- Example#2230 - Collator::__construct example
- Example#2231 - collator_create example
- Example#2232 - collator_get_attribute example
- Example#2233 - collator_get_error_code example
- Example#2234 - collator_get_error_message example
- Example#2235 - collator_get_locale example
- Example#2236 - collator_get_sort_keyexample
- Example#2237 - collator_get_strength example
- Example#2238 - collator_set_attribute example
- Example#2239 - collator_set_strength example
- Example#2240 - collator_sort_with_sort_keys example
- Example#2241 - collator_sort example
- Example#2242 - numfmt_create example
- Example#2243 - NumberFormatter::create example
- Example#2244 - numfmt_format_currency example
- Example#2245 - OO example
- Example#2246 - numfmt_format example
- Example#2247 - OO example
- Example#2248 - numfmt_get_attribute example
- Example#2249 - OO example
- Example#2250 - numfmt_get_error_code example
- Example#2251 - OO example
- Example#2252 - numfmt_get_error_message example
- Example#2253 - OO example
- Example#2254 - numfmt_get_locale example
- Example#2255 - numfmt_get_pattern example
- Example#2256 - OO example
- Example#2257 - numfmt_get_symbol example
- Example#2258 - OO example
- Example#2259 - numfmt_get_text_attribute example
- Example#2260 - OO example
- Example#2261 - numfmt_parse_currency example
- Example#2262 - OO example
- Example#2263 - numfmt_parse example
- Example#2264 - OO example
- Example#2265 - numfmt_set_attribute example
- Example#2266 - OO example
- Example#2267 - numfmt_set_pattern example
- Example#2268 - OO example
- Example#2269 - numfmt_set_symbol example
- Example#2270 - OO example
- Example#2271 - numfmt_set_text_attribute example
- Example#2272 - OO example
- Example#2273 - locale_accept_from_http example
- Example#2274 - OO example
- Example#2275 - locale_compose example
- Example#2276 - OO example
- Example#2277 - Subtag limits
- Example#2278 - locale_filter_matches example
- Example#2279 - OO example
- Example#2280 - locale_get_all_variants example
- Example#2281 - OO example
- Example#2282 - locale_get_default example
- Example#2283 - OO example
- Example#2284 - locale_get_display_language example
- Example#2285 - OO example
- Example#2286 - locale_get_display_name example
- Example#2287 - OO example
- Example#2288 - locale_get_display_region example
- Example#2289 - OO example
- Example#2290 - locale_get_display_script example
- Example#2291 - OO example
- Example#2292 - locale_get_display_variant example
- Example#2293 - OO example
- Example#2294 - locale_get_keywords example
- Example#2295 - OO example
- Example#2296 - locale_get_primary_language example
- Example#2297 - OO example
- Example#2298 - locale_get_region example
- Example#2299 - OO example
- Example#2300 - locale_get_script example
- Example#2301 - OO example
- Example#2302 - locale_lookup example
- Example#2303 - OO example
- Example#2304 - locale_parse example
- Example#2305 - OO example
- Example#2306 - locale_set_default example
- Example#2307 - OO example
- Example#2308 - Normalizer::getRawDecomposition example
- Example#2309 - normalizer_is_normalized example
- Example#2310 - OO example
- Example#2311 - normalizer_normalize example
- Example#2312 - OO example
- Example#2313 - msgfmt_create example
- Example#2314 - OO example
- Example#2315 - msgfmt_format_message example
- Example#2316 - OO example
- Example#2317 - msgfmt_format example
- Example#2318 - OO example
- Example#2319 - msgfmt_get_error_message example
- Example#2320 - OO example
- Example#2321 - msgfmt_get_locale example
- Example#2322 - OO example
- Example#2323 - msgfmt_get_pattern example
- Example#2324 - OO example
- Example#2325 - msgfmt_parse_message example
- Example#2326 - OO example
- Example#2327 - msgfmt_parse example
- Example#2328 - OO example
- Example#2329 - msgfmt_set_pattern example
- Example#2330 - OO example
- Example#2331 - IntlCalendar::add
- Example#2332 - IntlCalendar::after
- Example#2333 - IntlCalendar::clear examples
- Example#2334 - IntlCalendar::createInstance
- Example#2335 - IntlCalendar::equals
- Example#2336 - IntlCalendar::fieldDifference
- Example#2337 - IntlCalendar::fromDateTime
- Example#2338 - IntlCalendar::get
- Example#2339 - IntlCalendar::getActualMaximum
- Example#2340 - IntlCalendar::getAvailableLocales
- Example#2341 - IntlCalendar::getDayOfWeekType
- Example#2342 - IntlCalendar::getErrorCode and
IntlCalendar::getErrorMessage
- Example#2343 - IntlCalendar::getErrorMessage
- Example#2344 - IntlCalendar::getFirstDayOfWeek
- Example#2345 - IntlCalendar::getKeyworkValuesForLocale
- Example#2346 - Maxima examples
- Example#2347 - IntlCalendar::getLocale
- Example#2348 - IntlCalendar::getMinimalDaysInFirstWeek
- Example#2349 - IntlCalendar::getNow
- Example#2350 - IntlCalendar::getRepeatedWallTimeOption
- Example#2351 - IntlCalendar::getSkippedWallTimeOption
- Example#2352 - IntlCalendar::getTime
- Example#2353 - IntlCalendar::getTimeZone
- Example#2354 - IntlCalendar::getType
- Example#2355 - IntlCalendar::inDaylightTime
- Example#2356 - IntlCalendar::isEquivalentTo
- Example#2357 - IntlCalendar::isLenient
- Example#2358 - IntlCalendar::isWeekend
- Example#2359 - IntlCalendar::roll
- Example#2360 - IntlCalendar::set
- Example#2361 - IntlCalendar::setFirstDayOfWeek
- Example#2362 - IntlCalendar::setTime
- Example#2363 - IntlCalendar::setTimeZone
- Example#2364 - IntlCalendar::toDateTime
- Example#2365 - datefmt_create example
- Example#2366 - OO example
- Example#2367 - datefmt_format example
- Example#2368 - OO example
- Example#2369 - With IntlCalendar object
- Example#2370 - IntlDateFormatter::formatObject examples
- Example#2371 - datefmt_get_calendar example
- Example#2372 - OO example
- Example#2373 - datefmt_get_datetype example
- Example#2374 - OO example
- Example#2375 - datefmt_get_error_code example
- Example#2376 - OO example
- Example#2377 - datefmt_get_error_message example
- Example#2378 - OO example
- Example#2379 - datefmt_get_locale example
- Example#2380 - OO example
- Example#2381 - datefmt_get_pattern example
- Example#2382 - OO example
- Example#2383 - datefmt_get_timetype example
- Example#2384 - OO example
- Example#2385 - datefmt_get_timezone_id example
- Example#2386 - OO example
- Example#2387 - IntlDateFormatter::getCalendarObject example
- Example#2388 - IntlDateFormatter::getTimeZone examples
- Example#2389 - datefmt_is_lenient example
- Example#2390 - OO example
- Example#2391 - datefmt_localtime example
- Example#2392 - OO example
- Example#2393 - OO example
- Example#2394 - datefmt_parse example
- Example#2395 - datefmt_set_calendar example
- Example#2396 - OO example
- Example#2397 - Example with IntlCalendar argument
- Example#2398 - datefmt_set_lenient example
- Example#2399 - OO example
- Example#2400 - datefmt_set_pattern example
- Example#2401 - OO example
- Example#2402 - IntlDateFormatter::setTimeZone examples
- Example#2403 - resourcebundle_count example
- Example#2404 - OO example
- Example#2405 - resourcebundle_create example
- Example#2406 - ResourceBundle::create example
- Example#2407 - resourcebundle_get_error_code example
- Example#2408 - OO example
- Example#2409 - resourcebundle_get_error_message example
- Example#2410 - OO example
- Example#2411 - resourcebundle_get example
- Example#2412 - OO example
- Example#2413 - resourcebundle_locales example
- Example#2414 - OO example
- Example#2415 - Spoofchecker::areConfusable example
- Example#2416 - Spoofchecker::isSuspicious example
- Example#2417 - Retrieving the registered transliterator IDs
- Example#2418 - Converting escaped UTF-16 code units
- Example#2419 - IntlDatePatternGenerator::getBestPattern example
- Example#2420 - Converting from UTF-8 to UTF-16 and back
- Example#2421 - Invalid characters in input
- Example#2422 - Characters which cannot be encoded
- Example#2423 - grapheme_extract example
- Example#2424 - grapheme_stripos example
- Example#2425 - grapheme_stristr example
- Example#2426 - grapheme_strlen example
- Example#2427 - grapheme_strpos example
- Example#2428 - grapheme_strripos example
- Example#2429 - grapheme_strrpos example
- Example#2430 - grapheme_strstr example
- Example#2431 - grapheme_substr example
- Example#2432 - idn_to_ascii 示例
- Example#2433 - idn_to_utf8 示例
- Example#2434 - Testing different code points
- Example#2435 - Testing different code points
- Example#2436 - Testing different code points
- Example#2437 - Testing different code points
- Example#2438 - Testing different code points
- Example#2439 - Testing different code points
- Example#2440 - Testing different code points
- Example#2441 - Testing different code points
- Example#2442 - Testing different code points
- Example#2443 - Enumerating over a sample range of code points
- Example#2444 - Enumerating over a sample range of code points
- Example#2445 - Testing different code points
- Example#2446 - Testing different code points
- Example#2447 - Testing different code points
- Example#2448 - Testing different code points
- Example#2449 - Testing different code points
- Example#2450 - Testing different properties
- Example#2451 - Testing different properties
- Example#2452 - Testing different properties
- Example#2453 - Testing different code points
- Example#2454 - Testing different properties
- Example#2455 - Testing different properties
- Example#2456 - Testing different properties
- Example#2457 - Testing different properties
- Example#2458 - Testing different properties
- Example#2459 - Testing different properties
- Example#2460 - Testing different code points
- Example#2461 - Testing different code points
- Example#2462 - Testing different code points
- Example#2463 - Testing different code points
- Example#2464 - Testing different code points
- Example#2465 - Testing different code points
- Example#2466 - Testing different code points
- Example#2467 - Testing different code points
- Example#2468 - Testing different code points
- Example#2469 - Testing different code points
- Example#2470 - Testing different code points
- Example#2471 - Testing different code points
- Example#2472 - Testing different code points
- Example#2473 - Testing different code points
- Example#2474 - Testing different code points
- Example#2475 - Testing different code points
- Example#2476 - Testing different code points
- Example#2477 - Testing different code points
- Example#2478 - Testing different code points
- Example#2479 - Testing different code points
- Example#2480 - Testing different code points
- Example#2481 - Testing different code points
- Example#2482 - Testing different code points
- Example#2483 - Testing different code points
- Example#2484 - Testing different code points
- Example#2485 - Testing different code points
- Example#2486 - Testing different code points
- Example#2487 - Testing different code points
- Example#2488 - Testing different code points
- Example#2489 - Testing different code points
- Example#2490 - Testing different code points
- Example#2491 - Testing different code points
- Example#2492 - intl_error_name example
- Example#2493 - intl_get_error_code example
- Example#2494 - intl_get_error_message example
- Example#2495 - intl_is_failure example
- Example#2496 - php.ini 设置例子
- Example#2497 - php.ini 里 EUC-JP 用户的设置
- Example#2498 - php.ini 里 SJIS 用户的设置
- Example#2499 - 在 php.ini 中禁用 HTTP 输入转换
- Example#2500 - php.ini 设置例子
- Example#2501 - 脚本例子
- Example#2502 - Testing different code points
- Example#2503 - mb_convert_case 例子
- Example#2504 - 非拉丁 UTF-8 文本的mb_convert_case 例子
- Example#2505 - mb_convert_encoding 例子
- Example#2506 - mb_convert_kana example
- Example#2507 - mb_convert_variables 例子
- Example#2508 - convmap 例子
- Example#2509 - convmap 的例子: 编码(escape) JavaScript 字符串
- Example#2510 - mb_detect_encoding 例子
- Example#2511 - mb_detect_order 例子
- Example#2512 - 案例展示了无效的检测顺序
- Example#2513 - mb_encode_mimeheader 例子
- Example#2514 - map example
- Example#2515 - mb_encode_numericentity example
- Example#2516 - mb_encoding_aliases example
- Example#2517 - mb_ereg_replace_callback example
- Example#2518 - mb_ereg_replace_callback using anonymous function
- Example#2519 - mb_internal_encoding 例子
- Example#2520 - mb_list_encodings 例子
- Example#2521 -
- Example#2522 - mb_output_handler 例子
- Example#2523 - mb_preferred_mime_name 例子
- Example#2524 - mb_strimwidth 例子
- Example#2525 - mb_strtolower 例子
- Example#2526 - 非拉丁 UTF-8 文本的 mb_strtolower 例子
- Example#2527 - mb_strtoupper 例子
- Example#2528 - 非拉丁 UTF-8 文本的 mb_strtoupper 例子
- Example#2529 - mb_substitute_character 例子
- Example#2530 - mb_substr_count 例子
- Example#2531 - pspell_add_to_personal
- Example#2532 - pspell_check Example
- Example#2533 - pspell_add_to_personal Example
- Example#2534 - pspell_config_create
- Example#2535 - pspell_config_ignore
- Example#2536 - pspell_config_mode Example
- Example#2537 - pspell_config_personal
- Example#2538 - pspell_config_repl
- Example#2539 - pspell_config_runtogether
- Example#2540 - pspell_new_config
- Example#2541 - pspell_new_personal
- Example#2542 - pspell_new
- Example#2543 - pspell_add_to_personal
- Example#2544 - pspell_store_replacement
- Example#2545 - pspell_suggest example
- Example#2546 - Basic recode_file example
- Example#2547 - Basic recode_string example
- Example#2548 - exif_imagetype 例子
- Example#2549 - exif_read_data 例子
- Example#2550 - exif_read_data with streams available as of PHP 7.2.0
- Example#2551 - exif_tagname 函数例程
- Example#2552 - exif_thumbnail 例子
- Example#2553 - 使用 PHP 创建 PNG 图像
- Example#2554 - 使用 Alpha 通道为图像加水印
- Example#2555 - 使用 imagecopymerge 函数创建半透明水印
- Example#2556 - 使用 gd_info
- Example#2557 - getimagesize(文件)
- Example#2558 - getimagesize(URL)
- Example#2559 - getimagesize() 和 MIME 类型
- Example#2560 - getimagesize() 返回 IPTC
- Example#2561 - getimagesize and MIME types
- Example#2562 - getimagesize example
- Example#2563 - getimagesize (URL)
- Example#2564 - getimagesize() returning IPTC
- Example#2565 - getimagesizefromstring 函数例程
- Example#2566 - image_type_to_extension 例子
- Example#2567 - image_type_to_mime_type (file)
- Example#2568 - image2wbmp 例子
- Example#2569 - imageaffinematrixconcat example
- Example#2570 - imageaffinematrixget example
- Example#2571 - imagealphablending usage example
- Example#2572 - A comparison of two lines, one with anti-aliasing switched on
- Example#2573 - 用 imagearc 画一个圆
- Example#2574 - Saving a BMP file
- Example#2575 - imagechar 例子
- Example#2576 - imagecharup 例子
- Example#2577 - imagecolorallocate 例子
- Example#2578 - 使用 imagecolorallocatealpha 的例子
- Example#2579 - Example of using imagecolorallocatealpha
- Example#2580 - 取得各自的 RGB 值
- Example#2581 - Search for a set of colors in an image
- Example#2582 - 使用 imagecolorclosesthwb 的例子
- Example#2583 - Get colors from the GD logo
- Example#2584 - imagecolormatch 例子
- Example#2585 - Using imagecoloresolvealpha to get colors from an image
- Example#2586 - imagecolorsforindex 例子
- Example#2587 - Embossing the PHP.net logo
- Example#2588 - Gaussian blur
- Example#2589 - 简单的例子
- Example#2590 - 按比例对图像重新采样
- Example#2591 - Resizing an image
- Example#2592 - 新建一个新的 GD 图像流并输出图像
- Example#2593 - Convert an BMP image to a PNG image using imagecreatefrombmp
- Example#2594 - imagecreatefromgd2 例子
- Example#2595 - imagecreatefromgd2part example
- Example#2596 - imagecreatefromgd 例子
- Example#2597 - 处理创建过程中的错误
- Example#2598 - 处理创建过程中的错误
- Example#2599 - 处理创建 PNG 过程中的错误
- Example#2600 - imagecreatefromstring example
- Example#2601 - 处理创建 WBMP 过程中的错误
- Example#2602 - Convert an WebP image to a jpeg image using imagecreatefromwebp
- Example#2603 - Convert an XBM image to a png image using imagecreatefromxbm
- Example#2604 - Creating an image instance using imagecreatefromxpm
- Example#2605 - 新建一个新的 GD 图像流并输出图像
- Example#2606 - imagecrop example
- Example#2607 - Proper handling of auto-cropping
- Example#2608 - imageellipse 例子
- Example#2609 - imagefill 例子
- Example#2610 - 创建一 3D 效果的饼状图
- Example#2611 - imagefilledellipse 例子
- Example#2612 - imagefilledpolygon 例子
- Example#2613 - imagefilter 灰度例子
- Example#2614 - imagefilter 亮度例子
- Example#2615 - imagefilter 上彩例子
- Example#2616 - imagefilter grayscale example
- Example#2617 - imagefilter brightness example
- Example#2618 - imagefilter colorize example
- Example#2619 - imagefilter negate example
- Example#2620 - imagefilter pixelate example
- Example#2621 - Flips an image vertically
- Example#2622 - Flips the image horizontally
- Example#2623 - imageftbbox example
- Example#2624 - imagefttext example
- Example#2625 - 输出一个 GD2 图像
- Example#2626 - 保存 GD2 图像
- Example#2627 - imagegetclip example
- Example#2628 - 使用 imagegif 输出一个图像
- Example#2629 - 使用 imagegif 将一个 PNG 转换成 GIF
- Example#2630 - imagegrabscreen example
- Example#2631 - imagegrabwindow example
- Example#2632 - 使用 imageinterlace 打开隔行扫描
- Example#2633 - Simple detection of true color image instances using imageistruecolor
- Example#2634 - 输出 JPEG 图像
- Example#2635 - 保存一副 JPEG 图像
- Example#2636 - 以 75% 的图像质量输出图像
- Example#2637 - imagelayereffect example
- Example#2638 - 画一条粗线
- Example#2639 - 使用 imageloadfont
- Example#2640 - imageopenpolygon example
- Example#2641 - Converts any image object to true color
- Example#2642 - imagepolygon 例子
- Example#2643 - Setting and getting the resolution of an image
- Example#2644 - 将图像旋转 180 度
- Example#2645 - imagesavealpha 例子
- Example#2646 - imagesetinterpolation example
- Example#2647 - imagesetstyle 例子
- Example#2648 - imagesetthickness example
- Example#2649 - imagestring 例子
- Example#2650 - 使用 imagesx
- Example#2651 - 使用 imagesy
- Example#2652 - Converting a true color image to a palette-based image
- Example#2653 - imagettftext 例子
- Example#2654 - imagetypes 例子
- Example#2655 - 保存为 WebP 图像文件
- Example#2656 - 保存一个 XBM 文件
- Example#2657 - 以不同前景色保存一个 XBM 文件
- Example#2658 - Embedding IPTC data into a JPEG
- Example#2659 - iptcparse() used together with getimagesize
- Example#2660 - jpeg2wbmp 例子
- Example#2661 - png2wbmp 例子
- Example#2662 - Gmagick Example
- Example#2663 - Gmagick::despeckleimage example
- Example#2664 - Gmagick::setCompressionQuality
- Example#2665 - Creating a thumbnail in Imagick
- Example#2666 - Make a thumbnail of all JPG files in a directory
- Example#2667 - Creating a reflection of an image
- Example#2668 - Filling text with gradient
- Example#2669 - Read in GIF image and resize all frames
- Example#2670 - Create a PHP logo
- Example#2671 - Using Imagick::adaptiveBlurImage:
- Example#2672 - Using Imagick::adaptiveResizeImage
- Example#2673 - A Imagick::adaptiveSharpenImage example
- Example#2674 - Imagick::adaptiveThresholdImage
- Example#2675 - Imagick::addNoiseImage
- Example#2676 - Imagick::affineTransformImage
- Example#2677 - Using Imagick::annotateImage:
- Example#2678 - Imagick::appendImages example
- Example#2679 - Imagick::autoLevelImage
- Example#2680 - Imagick::blackThresholdImage
- Example#2681 - Imagick::blueShiftImage
- Example#2682 - Using Imagick::blurImage:
- Example#2683 - Imagick::borderImage
- Example#2684 - Imagick::brightnessContrastImage
- Example#2685 - Imagick::charcoalImage
- Example#2686 - Using Imagick::chopImage:
- Example#2687 - Imagick object cloning in different versions of imagick
- Example#2688 - Using Imagick::clutImage:
- Example#2689 - Imagick::colorizeImage
- Example#2690 - Imagick::colorMatrixImage
- Example#2691 - Using Imagick::commentImage:
- Example#2692 - Using Imagick::compareImageLayers
- Example#2693 - Using Imagick::compareImages:
- Example#2694 - Imagick::contrastImage
- Example#2695 - Imagick::convolveImage
- Example#2696 - Imagick::cropImage
- Example#2697 - Imagick::deskewImage
- Example#2698 - Imagick::despeckleImage
- Example#2699 - Using Imagick::distortImage:
- Example#2700 - Imagick::edgeImage
- Example#2701 - Imagick::embossImage
- Example#2702 - Imagick::enhanceImage
- Example#2703 - Imagick::equalizeImage
- Example#2704 - Using Imagick::evaluateImage
- Example#2705 - Using Imagick::exportImagePixels
- Example#2706 - Imagick::filter
- Example#2707 - Imagick::flipImage
- Example#2708 - Imagick::floodfillPaintImage example
- Example#2709 - Imagick::flopImage
- Example#2710 - Imagick::forwardFourierTransformImage
- Example#2711 - Imagick::frameImage
- Example#2712 - Create a sinusoidal gradient
- Example#2713 - Create a gradient from the polynomial (4x^2 - 4x + 1)
- Example#2714 - Create a complex gradient from the polynomial (4x^2 - 4x^2 + 1) modulated by a sinusoidal gradient
- Example#2715 - Imagick::fxImage
- Example#2716 - Imagick::gammaImage
- Example#2717 - Imagick::gaussianBlurImage
- Example#2718 - Using Imagick::getImageGeometry
- Example#2719 - Generates Imagick::getImageHistogram
- Example#2720 - Using Imagick::getImageLength:
- Example#2721 - Using Imagick::getImageProperties:
- Example#2722 - Using Imagick::getImageProperty:
- Example#2723 - Using Imagick::getIteratorIndex:
- Example#2724 - Imagick::getPixelIterator
- Example#2725 - Imagick::getPixelRegionIterator example
- Example#2726 - Getting the size of a raw RGB image set at 200x400, after scaling to 400x800 (compared to width / height)
- Example#2727 - Imagick::haldClutImage
- Example#2728 - Imagick::identifyFormat
- Example#2729 - Example Result Format
- Example#2730 - Imagick::implodeImage
- Example#2731 - Imagick::importImagePixels example
- Example#2732 - Imagick::levelImage
- Example#2733 - Imagick::linearStretchImage
- Example#2734 - Imagick::magnifyImage
- Example#2735 - Imagick::medianFilterImage
- Example#2736 - Imagick::mergeImageLayers
- Example#2737 - Imagick::modulateImage
- Example#2738 - Convolve Imagick::morphology
- Example#2739 - Correlate Imagick::morphology
- Example#2740 - Erode Imagick::morphology
- Example#2741 - Erode Intensity Imagick::morphology
- Example#2742 - Dilate Imagick::morphology
- Example#2743 - Dilate intensity Imagick::morphology
- Example#2744 - Distance with Chebyshev kernel Imagick::morphology
- Example#2745 - Distance with Manhattan kernel Imagick::morphology
- Example#2746 - Distance with ocatagonal kernel Imagick::morphology
- Example#2747 - Distance with Euclidean kernel Imagick::morphology
- Example#2748 - Edge Imagick::morphology
- Example#2749 - Open Imagick::morphology
- Example#2750 - Open intensity Imagick::morphology
- Example#2751 - Close Imagick::morphology
- Example#2752 - Close Intensity Imagick::morphology
- Example#2753 - Smooth Imagick::morphology
- Example#2754 - Edge in Imagick::morphology
- Example#2755 - Edge out Imagick::morphology
- Example#2756 - The 'TopHat' method, or more specifically 'White Top Hat', returns the pixels that were removed by a Opening of the shape, that is the pixels that were removed to round off the points, and the connecting bridged between shapes. Imagick::morphology
- Example#2757 - The 'BottomHat' method, also known as 'Black TopHat' is the pixels that a Closing of the shape adds to the image. That is the pixels that were used to fill in the 'holes', 'gaps', and 'bridges'. Imagick::morphology
- Example#2758 - Hit and Miss Imagick::morphology
- Example#2759 - Thinning Imagick::morphology
- Example#2760 - Thicken Imagick::morphology
- Example#2761 - Thick to generate a convex hull Imagick::morphology
- Example#2762 - Iterative morphology Imagick::morphology
- Example#2763 - Helper function to get an image silhouette Imagick::morphology
- Example#2764 - Imagick::motionBlurImage
- Example#2765 - Imagick::negateImage
- Example#2766 - Using Imagick::newImage:
- Example#2767 - Imagick::newPseudoImage
- Example#2768 - Imagick::normalizeImage
- Example#2769 - Imagick::oilPaintImage
- Example#2770 - Using Imagick::optimizeImageLayers
- Example#2771 - Imagick::orderedPosterizeImage
- Example#2772 - Using Imagick::pingImageBlob
- Example#2773 - Using Imagick::pingImageFile
- Example#2774 - A Imagick::polaroidImage example
- Example#2775 - Imagick::posterizeImage
- Example#2776 - Imagick::quantizeImage
- Example#2777 - Using Imagick::queryFontMetrics:
- Example#2778 - Imagick::queryFonts
- Example#2779 - Imagick::queryFormats
- Example#2780 - Imagick::radialBlurImage
- Example#2781 - Imagick::raiseImage
- Example#2782 - Imagick::randomThresholdImage
- Example#2783 - Imagick::readImageBlob
- Example#2784 - Imagick::recolorImage
- Example#2785 - Imagick::reduceNoiseImage
- Example#2786 - Imagick::resampleImage
- Example#2787 - Imagick::resizeImage
- Example#2788 - Imagick::rollImage
- Example#2789 - Imagick::rotateImage
- Example#2790 - Imagick::rotationalBlurImage
- Example#2791 - Using Imagick::roundCorners:
- Example#2792 - Imagick::scaleImage
- Example#2793 - Imagick::segmentImage
- Example#2794 - Imagick::selectiveBlurImage
- Example#2795 - Imagick::separateImageChannel
- Example#2796 - Imagick::sepiaToneImage
- Example#2797 - Imagick::setCompressionQuality
- Example#2798 - A Imagick::setFont example
- Example#2799 - A Imagick::setImage example
- Example#2800 - Imagick::setImageArtifact
- Example#2801 - Imagick::setImageBias
- Example#2802 - Imagick::setImageClipMask
- Example#2803 - Modify animated Gif with Imagick::setImageDelay
- Example#2804 - Basic Imagick::setImageIterations usage
- Example#2805 - A Imagick::setImageOpacity example
- Example#2806 - Imagick::setImageOrientation
- Example#2807 - Using Imagick::setImageProperty:
- Example#2808 - Imagick::setImageResolution
- Example#2809 - Modify animated Gif with Imagick::setImageTicksPerSecond
- Example#2810 - Using Imagick::setIteratorIndex:
- Example#2811 - Attempt to reach '$extent' sizeImagick::setOption
- Example#2812 - Imagick::setOption
- Example#2813 - Imagick::setOption
- Example#2814 - A Imagick::setPointSize example
- Example#2815 - Imagick::setProgressMonitor
- Example#2816 - Imagick::setSamplingFactors
- Example#2817 - Imagick::shadeImage
- Example#2818 - Imagick::shadowImage
- Example#2819 - Imagick::sharpenImage
- Example#2820 - Imagick::shaveImage
- Example#2821 - Imagick::shearImage
- Example#2822 - Create a gradient image using Imagick::sigmoidalContrastImage
suitable for blending two images together smoothly, with the blending
defined by $contrast and $the midpoint
- Example#2823 - Imagick::sketchImage
- Example#2824 - Imagick::smushImages
- Example#2825 - Imagick::solarizeImage
- Example#2826 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
- Example#2827 - SPARSECOLORMETHOD_BILINEAR Imagick::sparseColorImage
- Example#2828 - SPARSECOLORMETHOD_SPEPARDS Imagick::sparseColorImage
- Example#2829 - SPARSECOLORMETHOD_VORONOI Imagick::sparseColorImage
- Example#2830 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
- Example#2831 - createGradientImage is used by other examples. Imagick::sparseColorImage
- Example#2832 - Imagick::spliceImage
- Example#2833 - Imagick::spreadImage
- Example#2834 - Imagick::statisticImage
- Example#2835 - Imagick::subImageMatch
- Example#2836 - Imagick::swirlImage
- Example#2837 - Imagick::textureImage
- Example#2838 - Imagick::thresholdImage
- Example#2839 - Imagick::thumbnailImage
- Example#2840 - Imagick::tintImage
- Example#2841 - Using Imagick::transformImage:
- Example#2842 - Imagick::transformImageColorspace example
- Example#2843 - Imagick::transparentPaintImage
- Example#2844 - Imagick::transposeImage
- Example#2845 - Imagick::transverseImage
- Example#2846 - Using Imagick::trimImage:
- Example#2847 - Imagick::uniqueImageColors
- Example#2848 - Imagick::unsharpMaskImage
- Example#2849 - Imagick::vignetteImage
- Example#2850 - WaveImage can be quite slow Imagick::waveImage
- Example#2851 - Imagick::whiteThresholdImage
- Example#2852 - ImagickDraw::affine example
- Example#2853 - ImagickDraw::arc example
- Example#2854 - ImagickDraw::bezier example
- Example#2855 - ImagickDraw::circle example
- Example#2856 - ImagickDraw::composite example
- Example#2857 - ImagickDraw::ellipse example
- Example#2858 - ImagickDraw::line example
- Example#2859 - ImagickDraw::matte example
- Example#2860 - ImagickDraw::pathCurveToQuadraticBezierAbsolute example
- Example#2861 - ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute example
- Example#2862 - ImagickDraw::pathCurveToQuadraticBezierSmoothRelative example
- Example#2863 - ImagickDraw::pathStart example
- Example#2864 - ImagickDraw::point example
- Example#2865 - ImagickDraw::polygon example
- Example#2866 - ImagickDraw::polyline example
- Example#2867 - ImagickDraw::popDefs example
- Example#2868 - ImagickDraw::push example
- Example#2869 - ImagickDraw::pushPattern example
- Example#2870 - ImagickDraw::rectangle example
- Example#2871 - ImagickDraw::rotate example
- Example#2872 - ImagickDraw::roundRectangle example
- Example#2873 - ImagickDraw::scale example
- Example#2874 - ImagickDraw::setClipPath example
- Example#2875 - ImagickDraw::setClipRule example
- Example#2876 - ImagickDraw::setClipUnits example
- Example#2877 - ImagickDraw::setFillAlpha example
- Example#2878 - ImagickDraw::setFillColor
- Example#2879 - ImagickDraw::setFillOpacity
- Example#2880 - ImagickDraw::setFillRule example
- Example#2881 - ImagickDraw::setFont example
- Example#2882 - ImagickDraw::setFontFamily example
- Example#2883 - ImagickDraw::setFontSize example
- Example#2884 - ImagickDraw::setFontStretch example
- Example#2885 - ImagickDraw::setFontStyle example
- Example#2886 - ImagickDraw::setFontWeight example
- Example#2887 - ImagickDraw::setGravity example
- Example#2888 - ImagickDraw::setStrokeAlpha example
- Example#2889 - ImagickDraw::setStrokeAntialias example
- Example#2890 - ImagickDraw::setStrokeColor example
- Example#2891 - ImagickDraw::setStrokeDashArray example
- Example#2892 - ImagickDraw::setStrokeDashOffset example
- Example#2893 - ImagickDraw::setStrokeLineCap example
- Example#2894 - ImagickDraw::setStrokeLineJoin example
- Example#2895 - ImagickDraw::setStrokeMiterLimit example
- Example#2896 - ImagickDraw::setStrokeOpacity example
- Example#2897 - ImagickDraw::setStrokeWidth example
- Example#2898 - ImagickDraw::setTextAlignment example
- Example#2899 - ImagickDraw::setTextAntialias example
- Example#2900 - ImagickDraw::setTextDecoration example
- Example#2901 - ImagickDraw::setTextUnderColor example
- Example#2902 - ImagickDraw::setVectorGraphics example
- Example#2903 - ImagickDraw::setViewBox example
- Example#2904 - ImagickDraw::skewX example
- Example#2905 - ImagickDraw::skewY example
- Example#2906 - ImagickDraw::translate example
- Example#2907 - ImagickPixel::construct
- Example#2908 - Basic Imagick::getColor usage
- Example#2909 - Basic Imagick::getColorAsString usage
- Example#2910 - ImagickPixel getColorCount
- Example#2911 - Basic Imagick::getColorValue usage
- Example#2912 - ImagickPixel::getColorValueQuantum
- Example#2913 - Basic Imagick::getHSL example
- Example#2914 - ImagickPixel::isSimilar
- Example#2915 - ImagickPixel::setColor
- Example#2916 - Basic Imagick::setColorValue usage
- Example#2917 - ImagickPixel::setColorValueQuantum
- Example#2918 - Use ImagickPixel::setHSL to modify a color
- Example#2919 - ImagickPixelIterator::clear
- Example#2920 - ImagickPixelIterator::construct
- Example#2921 - ImagickPixelIterator::getNextIteratorRow
- Example#2922 - ImagickPixelIterator::resetIterator
- Example#2923 - ImagickPixelIterator::setIteratorRow
- Example#2924 - imap_append example
- Example#2925 - imap_check example
- Example#2926 - imap_createmailbox example
- Example#2927 - imap_delete example
- Example#2928 - imap_fetch_overview example
- Example#2929 - imap_gc example
- Example#2930 - imap_get_quota example
- Example#2931 - imap_get_quota 4.3 or greater example
- Example#2932 - imap_get_quotaroot example
- Example#2933 - imap_getacl example
- Example#2934 - imap_getmailboxes example
- Example#2935 - imap_list example
- Example#2936 - imap_mail_compose example
- Example#2937 - imap_mailboxmsginfo example
- Example#2938 - imap_mime_header_decode example
- Example#2939 - Different use of imap_open
- Example#2940 - imap_open example
- Example#2941 - imap_ping Example
- Example#2942 - imap_reopen example
- Example#2943 - imap_rfc822_parse_adrlist example
- Example#2944 - imap_rfc822_write_address example
- Example#2945 - imap_search example
- Example#2946 - imap_set_quota example
- Example#2947 - imap_setflag_full example
- Example#2948 - imap_status example
- Example#2949 - imap_thread Example
- Example#2950 - imap_timeout example
- Example#2951 - Basic imap_utf8 Usage
- Example#2952 - 计算散列值并订阅一个用户
- Example#2953 - Sending mail.
- Example#2954 - Sending mail with extra headers.
- Example#2955 - Sending mail with an additional command line parameter.
- Example#2956 - Sending HTML email
- Example#2957 - mailparse_determine_best_xfer_encoding example
- Example#2958 - mailparse_rfc822_parse_addresses example
- Example#2959 - mailparse_stream_encode example
- Example#2960 - mailparse_uudecode_all example
- Example#2961 - bcadd 示例
- Example#2962 - bccomp 示例
- Example#2963 - bcdiv 示例
- Example#2964 - bcmod 示例
- Example#2965 - 带小数点的 bcmod
- Example#2966 - bcmul 示例
- Example#2967 - bcmul scale example
- Example#2968 - bcpow 示例
- Example#2969 - bcpow scale example
- Example#2970 - bcscale 示例
- Example#2971 - bcsqrt 示例
- Example#2972 - bcsub 示例
- Example#2973 - Factorial function using GMP
- Example#2974 - gmp_abs example
- Example#2975 - gmp_add example
- Example#2976 - gmp_and example
- Example#2977 - gmp_clrbit example
- Example#2978 - gmp_cmp example
- Example#2979 - gmp_com example
- Example#2980 - gmp_div_q example
- Example#2981 - Division of GMP numbers
- Example#2982 - gmp_div_r example
- Example#2983 - gmp_divexact example
- Example#2984 - gmp_export example
- Example#2985 - gmp_fact example
- Example#2986 - gmp_gcd example
- Example#2987 - Solving a linear Diophantine equation
- Example#2988 - gmp_hamdist example
- Example#2989 - gmp_import example
- Example#2990 - Creating GMP number
- Example#2991 - gmp_intval example
- Example#2992 - gmp_invert example
- Example#2993 - gmp_jacobi example
- Example#2994 - gmp_legendre example
- Example#2995 - gmp_mod example
- Example#2996 - gmp_mul example
- Example#2997 - gmp_neg example
- Example#2998 - gmp_nextprime example
- Example#2999 - gmp_or example
- Example#3000 - gmp_perfect_square example
- Example#3001 - gmp_popcount example
- Example#3002 - gmp_pow example
- Example#3003 - gmp_powm example
- Example#3004 - gmp_prob_prime example
- Example#3005 - gmp_random_bits example
- Example#3006 - gmp_random_range example
- Example#3007 - gmp_random_seed example
- Example#3008 - gmp_random example
- Example#3009 - gmp_scan0 example
- Example#3010 - gmp_scan1 example
- Example#3011 - gmp_setbit example - 0 index
- Example#3012 - gmp_setbit example - 1 index
- Example#3013 - gmp_setbit example - clearing a bit
- Example#3014 - gmp_sign example
- Example#3015 - gmp_sqrt example
- Example#3016 - gmp_sqrtrem example
- Example#3017 - Converting a GMP number to a string
- Example#3018 - gmp_sub example
- Example#3019 - gmp_testbit example
- Example#3020 - gmp_xor example
- Example#3021 - abs 例子
- Example#3022 - base_convert 例子
- Example#3023 - bindec 例子
- Example#3024 - bindec 将输入解读为无符号整数
- Example#3025 - ceil 例子
- Example#3026 - cos 例子
- Example#3027 - decbin 例子
- Example#3028 - dechex 例子
- Example#3029 - 大整数的 dechex 例子
- Example#3030 - decoct 范例
- Example#3031 - deg2rad 例子
- Example#3032 - exp 例子
- Example#3033 - Using fdiv
- Example#3034 - floor 例子
- Example#3035 - fmod 的使用
- Example#3036 - hexdec 例子
- Example#3037 - intdiv 的一些例子
- Example#3038 - is_nan 例子
- Example#3039 - 使用 max 的例子
- Example#3040 - min 用法的例子
- Example#3041 - 计算一个随机浮点数
- Example#3042 - mt_rand 例子
- Example#3043 - mt_srand 例子
- Example#3044 - octdec 例子
- Example#3045 - pi 例子
- Example#3046 - pow 的一些例子
- Example#3047 - rad2deg 例子
- Example#3048 - rand 例子
- Example#3049 - round 例子
- Example#3050 - How precision affects a float
- Example#3051 - mode 例子
- Example#3052 - mode with precision examples
- Example#3053 - sin 例子
- Example#3054 - sqrt 例子
- Example#3055 - srand 例子
- Example#3056 - tan 例子
- Example#3057 - Evaluating a FDF document
- Example#3058 - Adding JavaScript code to a FDF
- Example#3059 - Populating a PDF document
- Example#3060 - Storing an uploaded file
- Example#3061 - Detecting all fieldnames in a FDF
- Example#3062 - Accessing the form data
- Example#3063 - Accessing the form data
- Example#3064 - Retrieving FDF as a string
- Example#3065 - Passing FDF data to a second form
- Example#3066 - gnupg clearsign example (procedural)
- Example#3067 - gnupg clearsign example (OO)
- Example#3068 - keylistiterator
- Example#3069 - Procedural gnupg_adddecryptkey example
- Example#3070 - OO gnupg_adddecryptkey example
- Example#3071 - Procedural gnupg_addencryptkey example
- Example#3072 - OO gnupg_addencryptkey example
- Example#3073 - Procedural gnupg_addsignkey example
- Example#3074 - OO gnupg_addsignkey example
- Example#3075 - Procedural gnupg_cleardecryptkeys example
- Example#3076 - OO gnupg_cleardecryptkeys example
- Example#3077 - Procedural gnupg_clearencryptkeys example
- Example#3078 - OO gnupg_clearencryptkeys example
- Example#3079 - Procedural gnupg_clearsignkeys example
- Example#3080 - OO gnupg_clearsignkeys example
- Example#3081 - Procedural gnupg_decrypt example
- Example#3082 - OO gnupg_decrypt example
- Example#3083 - Procedural gnupg_decryptverify example
- Example#3084 - OO gnupg_decryptverify example
- Example#3085 - Procedural gnupg_deletekey example
- Example#3086 - OO gnupg_deletekey example
- Example#3087 - Procedural gnupg_encrypt example
- Example#3088 - OO gnupg_encrypt example
- Example#3089 - Procedural gnupg_encryptsign example
- Example#3090 - OO gnupg_encryptsign example
- Example#3091 - Procedural gnupg_export example
- Example#3092 - OO gnupg_export example
- Example#3093 - Procedural gnupg_getengineinfo example
- Example#3094 - OO gnupg_getengineinfo example
- Example#3095 - Procedural gnupg_geterror example
- Example#3096 - OO gnupg_geterror example
- Example#3097 - Procedural gnupg_geterrorinfo example
- Example#3098 - OO gnupg_geterrorinfo example
- Example#3099 - Procedural gnupg_getprotocol example
- Example#3100 - OO gnupg_getprotocol example
- Example#3101 - Procedural gnupg_gettrustlist example
- Example#3102 - OO gnupg_gettrustlist example
- Example#3103 - Procedural gnupg_import example
- Example#3104 - OO gnupg_import example
- Example#3105 - Procedural gnupg_init example with default setting
- Example#3106 - Procedural gnupg_init example with overriden file name and home dir
- Example#3107 - OO gnupg initializer example with default setting
- Example#3108 - OO gnupg initializer example with overriden file name and home dir
- Example#3109 - Procedural gnupg_keyinfo example
- Example#3110 - OO gnupg_keyinfo example
- Example#3111 - Procedural gnupg_listsignatures example
- Example#3112 - OO gnupg_listsignatures example
- Example#3113 - Procedural gnupg_setarmor example
- Example#3114 - OO gnupg_setarmor example
- Example#3115 - Procedural gnupg_seterrormode example
- Example#3116 - OO gnupg_seterrormode example
- Example#3117 - Procedural gnupg_setsignmode example
- Example#3118 - OO gnupg_setsignmode example
- Example#3119 - Procedural gnupg_sign example
- Example#3120 - OO gnupg_sign example
- Example#3121 - Procedural gnupg_verify example
- Example#3122 - OO gnupg_verify example
- Example#3123 - Creating and using a pattern
- Example#3124 - Creating and using a template
- Example#3125 - Hyphennate a text
- Example#3126 - Drawing a rectangle
- Example#3127 - Creating and using a spot color
- Example#3128 - Rotation of the coordinate system
- Example#3129 - Placing text at a given position
- Example#3130 - Drawing a dashed line
- Example#3131 - Translation of the coordinate system
- Example#3132 - A rpmdbinfo example
- Example#3133 - Searching for the package owning a file
- Example#3134 - A rpminfo example
- Example#3135 - example
- Example#3136 - example
- Example#3137 - example
- Example#3138 - example
- Example#3139 - example
- Example#3140 - example
- Example#3141 - example
- Example#3142 - example
- Example#3143 - example
- Example#3144 - example
- Example#3145 - example
- Example#3146 - example
- Example#3147 - example
- Example#3148 - example
- Example#3149 - example
- Example#3150 - example
- Example#3151 - example
- Example#3152 - example
- Example#3153 - example
- Example#3154 - Incorrect requests
- Example#3155 - Calling request from a request callback
- Example#3156 - Calling request from a request callback
- Example#3157 - Using eio with libevent
- Example#3158 - Cancelling a request
- Example#3159 - Calling eio_chmod
- Example#3160 - Making a custom request
- Example#3161 - Grouping requests
- Example#3162 - Using eio with libevent extension
- Example#3163 - Using eio with event extension
- Example#3164 - eio_cancel example
- Example#3165 - eio_custom example
- Example#3166 - eio_event_loop example
- Example#3167 - eio_lstat example
- Example#3168 - Using eio with libevent
- Example#3169 - Grouping requests
- Example#3170 - eio_grp example
- Example#3171 - eio_link example
- Example#3172 - eio_lstat example
- Example#3173 - eio_mkdir example
- Example#3174 - eio_mknod example
- Example#3175 - eio_nreqs example
- Example#3176 - eio_open example
- Example#3177 - eio_poll example
- Example#3178 - eio_read example
- Example#3179 - eio_readdir example
- Example#3180 - eio_readlink example
- Example#3181 - eio_realpath example
- Example#3182 - eio_rename example
- Example#3183 - eio_rmdir example
- Example#3184 - eio_stat example
- Example#3185 - eio_statvfs example
- Example#3186 - eio_symlink example
- Example#3187 - Simple timers
- Example#3188 - Periodic timer. Tick each 10.5 seconds
- Example#3189 - Periodic timer. Use reschedule callback
- Example#3190 - Periodic timer. Tick every 10.5 seconds starting at now
- Example#3191 - Wait until STDIN is readable
- Example#3192 - Use some async I/O to access a socket
- Example#3193 - Embedding one loop into another
- Example#3194 - Embedding loop created with kqueue backend into the default loop
- Example#3195 - Handle SIGTERM signal
- Example#3196 - Monitor changes of /var/log/messages
- Example#3197 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
- Example#3198 - Process status changes
- Example#3199 - Using reschedule callback
- Example#3200 - Embedding loop created with kqueue backend into the default loop
- Example#3201 - Embedding one loop into another
- Example#3202 - Embedding loop created with kqueue backend into the default loop
- Example#3203 - Embedding loop created with kqueue backend into the default loop
- Example#3204 - Periodic timer. Use reschedule callback
- Example#3205 - Periodic timer. Tick every 10.5 seconds starting at now
- Example#3206 - Hourly watcher
- Example#3207 - Handle SIGTERM signal
- Example#3208 - Monitor changes of /var/log/messages
- Example#3209 - Monitor changes of /var/log/messages
- Example#3210 - Simple timers
- Example#3211 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
- Example#3212 - Register an I/O watcher for some UDP socket but do not keep the
event loop from running just because of that watcher.
- Example#3213 - Expect Usage Example
- Example#3214 - Another Expect Usage Example
- Example#3215 - expect_expectl example
- Example#3216 - expect_popen example
- Example#3217 - 进程控制示例
- Example#3218 - pcntl_fork 示例
- Example#3219 - pcntl_rfork example
- Example#3220 - pcntl_signal_dispatch 示例
- Example#3221 - pcntl_signal_get_handler example
- Example#3222 - pcntl_signal示例
- Example#3223 - pcntl_sigprocmask 示例
- Example#3224 - pcntl_sigwaitinfo example
- Example#3225 - posix_access example
- Example#3226 - posix_ctermid example
- Example#3227 - posix_get_last_error example
- Example#3228 - posix_getcwd example
- Example#3229 - posix_getegid example
- Example#3230 - posix_geteuid example
- Example#3231 - posix_getgid example
- Example#3232 - Example use of posix_getgrgid
- Example#3233 - Example use of posix_getgrnam
- Example#3234 - Example use of posix_getgroups
- Example#3235 - Example use of posix_getlogin
- Example#3236 - Example use of posix_getpgid
- Example#3237 - posix_getpid 的使用例子
- Example#3238 - Example use of posix_getppid
- Example#3239 - Example use of posix_getpwnam
- Example#3240 - Example use of posix_getpwuid
- Example#3241 - Example use of posix_getrlimit
- Example#3242 - Example use of posix_getsid
- Example#3243 - Example use of posix_getuid
- Example#3244 - A posix_mknod example
- Example#3245 - posix_setegid example
- Example#3246 - posix_setgid example
- Example#3247 - posix_setuid example
- Example#3248 - posix_strerror example
- Example#3249 - Example use of posix_times
- Example#3250 - Example use of posix_uname
- Example#3251 - escapeshellarg 的例子
- Example#3252 - escapeshellcmd example
- Example#3253 - exec 例程
- Example#3254 - 使用 proc_open 函数将进程设置为高优先级
- Example#3255 - proc_open 例程
- Example#3256 - proc_open 在 Windows 上的怪异行为
- Example#3257 - shell_exec 例程
- Example#3258 - system 例程
- Example#3259 - Example showing Future as return value
- Example#3260 - Example showing Future as synchronization point
- Example#3261 - 获取对象属性表中的部分条目
- Example#3262 - 计算对象中的属性数量
- Example#3263 - Runtime inheritance
- Example#3264 - 检测对象状态
- Example#3265 - 检测对象状态
- Example#3266 - 合并数据到对象的属性表
- Example#3267 - 等待和唤醒
- Example#3268 - Notifications and Waiting
- Example#3269 - 弹出对象属性表中的最后一项数据
- Example#3270 - 弹出对象属性表中第一项数据
- Example#3271 - 同步
- Example#3272 - 等待和唤醒
- Example#3273 - 返回创建线程的线程或进程ID
- Example#3274 - 获取当前执行线程
- Example#3275 - 返回当前执行线程的ID
- Example#3276 - 返回引用线程的ID
- Example#3277 - 检测线程状态
- Example#3278 - 监测线程是否开始执行
- Example#3279 - 加入线程
- Example#3280 - 开始线程
- Example#3281 - A basic example of Worker::collect
- Example#3282 - Worker::getStacked 基本示例
- Example#3283 - 检测 Worker 对象状态
- Example#3284 - 关闭 Worker
- Example#3285 - 向 Worker 中入栈任务并执行
- Example#3286 - 从 Worker 栈中移除对象
- Example#3287 - Pool::collect 基本用法示例
- Example#3288 - 创建 Pool 对象
- Example#3289 - 完全停止一个 Pool
- Example#3290 - 提交任务
- Example#3291 - 提交任务到特定的 Worker
- Example#3292 - New immutability semantics of Threaded
- Example#3293 - Volatile use-case
- Example#3294 - Shared Memory Operations Overview
- Example#3295 - Closing shared memory block
- Example#3296 - Deleting shared memory block
- Example#3297 - Create a new shared memory block
- Example#3298 - Reading shared memory block
- Example#3299 - Getting the size of the shared memory block
- Example#3300 - Writing to shared memory block
- Example#3301 - SyncMutex::__construct named mutex with lock timeout example
- Example#3302 - SyncMutex::__construct unnamed mutex example
- Example#3303 - SyncMutex::lock example
- Example#3304 - SyncMutex::unlock example
- Example#3305 - SyncSemaphore::__construct example
- Example#3306 - SyncSemaphore::lock example
- Example#3307 - SyncSemaphore::unlock example
- Example#3308 - SyncEvent::__construct example
- Example#3309 - SyncEvent::fire example
- Example#3310 - SyncEvent::reset example
- Example#3311 - SyncEvent::wait example
- Example#3312 - SyncReaderWriter::__construct example
- Example#3313 - SyncReaderWriter::readlock example
- Example#3314 - SyncReaderWriter::readunlock example
- Example#3315 - SyncReaderWriter::writelock example
- Example#3316 - SyncReaderWriter::writeunlock example
- Example#3317 - SyncSharedMemory::__construct example
- Example#3318 - SyncSharedMemory::first example
- Example#3319 - SyncSharedMemory::__construct example
- Example#3320 - SyncSharedMemory::size example
- Example#3321 - SyncSharedMemory::write example
- Example#3322 - geoip_asnum_by_name函数的范例:
- Example#3323 - geoip_continent_code_by_name 函数的使用范例:
- Example#3324 - geoip_country_code_by_name 函数的范例:
- Example#3325 - geoip_country_code3_by_name 函数的使用范例:
- Example#3326 - geoip_country_name_by_name 函数的使用范例:
- Example#3327 - geoip_database_info 函数的使用范例:
- Example#3328 - geoip_db_avail 函数的使用范例:
- Example#3329 - geoip_db_filename函数的使用范例:
- Example#3330 - geoip_db_get_all_info 使用范例:
- Example#3331 - geoip_db_get_all_info 使用范例:
- Example#3332 - 一个 geoip_domain_by_name 使用范例:
- Example#3333 - 一个 geoip_id_by_name 使用范例:
- Example#3334 - 一个 geoip_isp_by_name 使用范例:
- Example#3335 - 一个 geoip_netspeedcell_by_name 使用范例:
- Example#3336 - 一个 geoip_org_by_name 使用范例:
- Example#3337 - geoip_record_by_name 例子:
- Example#3338 - geoip_region_by_name 例子:
- Example#3339 - geoip_region_name_by_code 使用美国和加拿大地区的范例。
- Example#3340 - geoip_region_name_by_code 使用 FIPS 代码的范例:
- Example#3341 - geoip_setup_custom_directory 例子:
- Example#3342 - geoip_time_zone_by_country_and_region 使用美国和加拿大地区的范例:
- Example#3343 - geoip_time_zone_by_country_and_region 使用 FIPS 代码的范例:
- Example#3344 - xor.data file
- Example#3345 - 一般训练
- Example#3346 - 一般测试
- Example#3347 - fann_create_train_from_callback example
- Example#3348 - fann_read_train_from_file 函数的使用范例:
- Example#3349 - igbinary_serialize example
- Example#3350 - JsonSerializable::jsonSerialize 例子
returning an array
- Example#3351 - JsonSerializable::jsonSerialize 例子
返回了一个关联数组 array
- Example#3352 - JsonSerializable::jsonSerialize 例子
返回一个 integer
- Example#3353 - JsonSerializable::jsonSerialize 例子
返回一个 string
- Example#3354 - json_decode 的例子
- Example#3355 - Accessing invalid object properties
- Example#3356 - common mistakes using json_decode
- Example#3357 - depth errors
- Example#3358 - json_decode of large integers
- Example#3359 - json_encode 例子
- Example#3360 - json_encode 函数中 options 参数的用法
- Example#3361 - 选项 JSON_NUMERIC_CHECK 例子
- Example#3362 - 连续与非连续数组示例
- Example#3363 - 选项 JSON_PRESERVE_ZERO_FRACTION 的例子
- Example#3364 - json_last_error 例子
- Example#3365 - json_encode 的 json_last_error
- Example#3366 - Lua::assign示例
- Example#3367 - Lua::call示例
- Example#3368 - Lua::eval示例
- Example#3369 - Lua::registerCallback示例
- Example#3370 - LuaClosure::__invoke示例
- Example#3371 - Execute some Lua code
- Example#3372 - Calling a Lua function
- Example#3373 - Profiling Lua code
- Example#3374 - Loading code into Lua
- Example#3375 - Manipulating the usage timer
- Example#3376 - Registering PHP functions to call from Lua
- Example#3377 - Calling a Lua function
- Example#3378 - Calling a Lua function
- Example#3379 - constant 的例子
- Example#3380 - 定义常量
- Example#3381 - 以保留名称定义常量
- Example#3382 - 检查常量
- Example#3383 - eval 例子 - 简单的文本合并
- Example#3384 - exit 例子
- Example#3385 - exit 状态码例子
- Example#3386 - 无论如何,Shutdown函数与析构函数都会被执行
- Example#3387 - 列出所有用户浏览器的信息
- Example#3388 - __halt_compiler 例子
- Example#3389 - highlight_string 例子
- Example#3390 - hrtime 的用法
- Example#3391 - ignore_user_abort例子
- Example#3392 - pack 范例
- Example#3393 - php_strip_whitespace 的例子
- Example#3394 - Basic sapi_windows_generate_ctrl_event Usage
- Example#3395 - Basic sapi_windows_set_ctrl_handler Usage
- Example#3396 - sapi_windows_vt100_support default state
- Example#3397 - sapi_windows_vt100_support changing state
- Example#3398 - Example usage of VT100 support enabled
- Example#3399 - sleep 的例子
- Example#3400 - sys_getloadavg 的例子
- Example#3401 - time_nanosleep 的例子
- Example#3402 - time_sleep_until 的一个例子
- Example#3403 - uniqid 例子
- Example#3404 - unpack example
- Example#3405 - unpack example with a repeater
- Example#3406 - unpack example with unnamed keys
- Example#3407 - usleep例子
- Example#3408 - 获取与设置根目录
- Example#3409 - 获取与设置 Logger
- Example#3410 - 快速写入日志
- Example#3411 - 快速获取某级别下日志的数量
- Example#3412 - 获取某级别下日志的详情
- Example#3413 - seaslog_get_author example
- Example#3414 - seaslog_get_version example
- Example#3415 - SeasLog::alert例子
- Example#3416 - SeasLog::analyzerCount example
- Example#3417 - SeasLog::analyzerDetail example
- Example#3418 - SeasLog::closeLoggerStream example
- Example#3419 - SeasLog::__construct example
- Example#3420 - SeasLog::critical example
- Example#3421 - SeasLog::debug example
- Example#3422 - SeasLog::__destruct example
- Example#3423 - SeasLog::emergency example
- Example#3424 - SeasLog::error example
- Example#3425 - SeasLog::flushBuffer example
- Example#3426 - SeasLog::getBasePath example
- Example#3427 - SeasLog::getBuffer example
- Example#3428 - SeasLog::getBufferEnabled example
- Example#3429 - SeasLog::getDatetimeFormat example
- Example#3430 - SeasLog::getLastLogger example
- Example#3431 - SeasLog::getRequestID example
- Example#3432 - SeasLog::getRequestVariable example
- Example#3433 - SeasLog::info example
- Example#3434 - SeasLog::log example
- Example#3435 - SeasLog::notice example
- Example#3436 - SeasLog::setBasePath example
- Example#3437 - SeasLog::setDatetimeFormat example
- Example#3438 - SeasLog::setLogger example
- Example#3439 - SeasLog::setRequestID example
- Example#3440 - SeasLog::setRequestVariable example
- Example#3441 - SeasLog::warning example
- Example#3442 - SplStack::__construct example
- Example#3443 - SplQueue::__construct example
- Example#3444 - Efficiently handling tasks with SplQueue
- Example#3445 - SplFixedArray usage example
- Example#3446 - SplFixedArray::__construct example
- Example#3447 - SplFixedArray::count example
- Example#3448 - SplFixedArray::fromArray example
- Example#3449 - SplFixedArray::getSize example
- Example#3450 - SplFixedArray::setSize example
- Example#3451 - SplFixedArray::toArray example
- Example#3452 - SplObjectStorage as a set
- Example#3453 - SplObjectStorage as a map
- Example#3454 - SplObjectStorage::addAll example
- Example#3455 - SplObjectStorage::attach example
- Example#3456 - SplObjectStorage::contains example
- Example#3457 - SplObjectStorage::count example
- Example#3458 - SplObjectStorage::current example
- Example#3459 - SplObjectStorage::detach example
- Example#3460 - SplObjectStorage::getHash example
- Example#3461 - SplObjectStorage::getInfo example
- Example#3462 - SplObjectStorage::key example
- Example#3463 - SplObjectStorage::next example
- Example#3464 - SplObjectStorage::offsetExists example
- Example#3465 - SplObjectStorage::offsetGet example
- Example#3466 - SplObjectStorage::offsetSet example
- Example#3467 - SplObjectStorage::offsetUnset example
- Example#3468 - SplObjectStorage::removeAll example
- Example#3469 - SplObjectStorage::removeAllExcept example
- Example#3470 - SplObjectStorage::rewind example
- Example#3471 - SplObjectStorage::serialize example
- Example#3472 - SplObjectStorage::setInfo example
- Example#3473 - SplObjectStorage::unserialize example
- Example#3474 - SplObjectStorage::valid example
- Example#3475 - AppendIterator::append example
- Example#3476 - Iterating AppendIterator with foreach
- Example#3477 - Iterating AppendIterator with the AppendIterator API
- Example#3478 - AppendIterator::getInnerIterator example
- Example#3479 - AppendIterator.getIteratorIndex basic example
- Example#3480 - AppendIterator::key basic example
- Example#3481 - ArrayIterator::current example
- Example#3482 - ArrayIterator::key example
- Example#3483 - ArrayIterator::next example
- Example#3484 - ArrayIterator::rewind example
- Example#3485 - ArrayIterator::valid example
- Example#3486 - CachingIterator::getCache example
- Example#3487 - Available callback arguments
- Example#3488 - Callback basic examples
- Example#3489 - A DirectoryIterator::__construct example
- Example#3490 - A DirectoryIterator::current example
- Example#3491 - A DirectoryIterator::getATime example
- Example#3492 - A DirectoryIterator::getBasename example
- Example#3493 - DirectoryIterator::getCTime example
- Example#3494 - DirectoryIterator::getExtension example
- Example#3495 -
- Example#3496 - A DirectoryIterator::getFilename example
- Example#3497 - DirectoryIterator::getGroup example
- Example#3498 - DirectoryIterator::getInode example
- Example#3499 - A DirectoryIterator::getMTime example
- Example#3500 - DirectoryIterator::getOwner example
- Example#3501 - DirectoryIterator::getPath example
- Example#3502 - DirectoryIterator::getPathname example
- Example#3503 - DirectoryIterator::getPerms example
- Example#3504 - DirectoryIterator::getSize example
- Example#3505 - DirectoryIterator::getType example
- Example#3506 - DirectoryIterator::isDir example
- Example#3507 - A DirectoryIterator::isDot example
- Example#3508 - DirectoryIterator::isExecutable example
- Example#3509 - DirectoryIterator::isFile example
- Example#3510 - A DirectoryIterator::isLink example
- Example#3511 - DirectoryIterator::isReadable example
- Example#3512 - DirectoryIterator::isWritable example
- Example#3513 - A DirectoryIterator::key example
- Example#3514 - DirectoryIterator::next example
- Example#3515 - DirectoryIterator::rewind example
- Example#3516 - DirectoryIterator::seek example
- Example#3517 - A DirectoryIterator::__toString example
- Example#3518 - A DirectoryIterator::valid example
- Example#3519 - FilesystemIterator::__construct example
- Example#3520 - FilesystemIterator::current example
- Example#3521 - FilesystemIterator::key example
- Example#3522 - FilesystemIterator::next example
- Example#3523 - FilesystemIterator::rewind example
- Example#3524 - FilesystemIterator::key example
- Example#3525 - FilterIterator::accept example
- Example#3526 - GlobIterator example
- Example#3527 - GlobIterator::count example
- Example#3528 - InfiniteIterator::__construct example
- Example#3529 - LimitIterator usage example
- Example#3530 - LimitIterator::__construct example
- Example#3531 - LimitIterator::getPosition example
- Example#3532 - Iterating a MultipleIterator
- Example#3533 - NoRewindIterator::__construct example
- Example#3534 - NoRewindIterator::rewind example
- Example#3535 - RecursiveArrayIterator::getChildren example
- Example#3536 - RecursiveArrayIterator::hasChildren example
- Example#3537 - Available callback arguments
- Example#3538 - Recursive callback basic example
- Example#3539 - RecursiveCallbackFilterIterator::hasChildren basic usage
- Example#3540 - RecursiveDirectoryIterator example
- Example#3541 - getSubPath example
- Example#3542 - getSubPathname example
- Example#3543 - Basic RecursiveFilterIterator example
- Example#3544 - RecursiveFilterIterator example
- Example#3545 - Iterating a RecursiveIteratorIterator
- Example#3546 - RecursiveRegexIterator::__construct example
- Example#3547 - RecursiveRegexIterator::getChildren example
- Example#3548 - RecursiveRegexIterator::hasChildren example
- Example#3549 - RegexIterator::accept example
- Example#3550 - RegexIterator::__construct example
- Example#3551 - RegexIterator::getFlags example
- Example#3552 - RegexIterator::getMode example
- Example#3553 - RegexIterator::getPregFlags example
- Example#3554 - RegexIterator::setFlags example
- Example#3555 - RegexIterator::setMode example
- Example#3556 - RegexIterator::setPregFlags example
- Example#3557 - Countable::count example
- Example#3558 - Basic usage
- Example#3559 - SeekableIterator::seek example
- Example#3560 - class_implements example
- Example#3561 - class_parents example
- Example#3562 - class_uses example
- Example#3563 - iterator_apply example
- Example#3564 - iterator_count example
- Example#3565 - iterator_to_array example
- Example#3566 - spl_autoload_extensions 示例
- Example#3567 - spl_autoload_register 作为 __autoload 函数的替代
- Example#3568 - class 未能加载的 spl_autoload_register 例子
- Example#3569 - spl_classes example
- Example#3570 - A spl_object_hash example
- Example#3571 - A spl_object_id example
- Example#3572 - SplFileInfo::__construct 示例
- Example#3573 - SplFileInfo::getBasename example
- Example#3574 - SplFileInfo::getCTime 例子
- Example#3575 - SplFileInfo::getExtension example
- Example#3576 -
- Example#3577 - SplFileInfo::getFilename example
- Example#3578 - SplFileInfo::getGroup example
- Example#3579 - SplFileInfo::getLinkTarget example
- Example#3580 - SplFileInfo::getOwner example
- Example#3581 - SplFileInfo::getPath example
- Example#3582 - SplFileInfo::getPathInfo example
- Example#3583 - SplFileInfo::getPathname example
- Example#3584 - SplFileInfo::getPerms example
- Example#3585 - SplFileInfo::getRealPath example
- Example#3586 - SplFileInfo::getType example
- Example#3587 - SplFileInfo::isDir example
- Example#3588 - SplFileInfo::isExecutable example
- Example#3589 - SplFileInfo::isFile example
- Example#3590 - SplFileInfo::isLink example
- Example#3591 - SplFileInfo::isReadable example
- Example#3592 - SplFileInfo::openFile example
- Example#3593 - SplFileInfo::setFileClass example
- Example#3594 - SplFileInfo::setFileClass example
- Example#3595 - SplFileInfo::__toString example
- Example#3596 - SplFileObject::__construct example
- Example#3597 - SplFileObject::current example
- Example#3598 - SplFileObject::eof example
- Example#3599 - SplFileObject::fflush example
- Example#3600 - SplFileObject::fgetc example
- Example#3601 - SplFileObject::fgetcsv example
- Example#3602 - SplFileObject::READ_CSV example
- Example#3603 - SplFileObject::fgets example
- Example#3604 - SplFileObject::fgetss example
- Example#3605 - SplFileObject::flock example
- Example#3606 - SplFileObject::fpassthru example
- Example#3607 - SplFileObject::fputcsv example
- Example#3608 - SplFileObject::fread example
- Example#3609 - SplFileObject::fscanf example
- Example#3610 - SplFileObject::fseek example
- Example#3611 - SplFileObject::fstat example
- Example#3612 - SplFileObject::ftell example
- Example#3613 - SplFileObject::ftruncate example
- Example#3614 - SplFileObject::fwrite example
- Example#3615 - SplFileObject::getCsvControl example
- Example#3616 - SplFileObject::getFlags example
- Example#3617 - SplFileObject::getMaxLineLen example
- Example#3618 - SplFileObject::key example
- Example#3619 - SplFileObject::key example with SplFileObject::setMaxLineLen
- Example#3620 - SplFileObject::next example
- Example#3621 - SplFileObject::rewind example
- Example#3622 - SplFileObject::seek example
- Example#3623 - SplFileObject::setCsvControl example
- Example#3624 - SplFileObject::setFlags example
- Example#3625 - SplFileObject::setMaxLineLen example
- Example#3626 - SplFileObject::valid example
- Example#3627 - SplTempFileObject example
- Example#3628 - ArrayObject::append 例子
- Example#3629 - ArrayObject::asort example
- Example#3630 - ArrayObject::__construct example
- Example#3631 - ArrayObject::count 例子
- Example#3632 - ArrayObject::exchangeArray example
- Example#3633 - ArrayObject::getArrayCopy example
- Example#3634 - ArrayObject::getFlags example
- Example#3635 - ArrayObject::getIterator example
- Example#3636 - ArrayObject::getIteratorClass example
- Example#3637 - ArrayObject::ksort example
- Example#3638 - ArrayObject::natcasesort example
- Example#3639 - ArrayObject::natsort example
- Example#3640 - ArrayObject::offsetExists example
- Example#3641 - ArrayObject::offsetGet example
- Example#3642 - ArrayObject::offsetSet 例子
- Example#3643 - ArrayObject::offsetUnset example
- Example#3644 - ArrayObject::serialize example
- Example#3645 - ArrayObject::setFlags example
- Example#3646 - ArrayObject::setIteratorClass example
- Example#3647 - ArrayObject::uasort example
- Example#3648 - ArrayObject::uksort example
- Example#3649 - Using file_get_contents
to retrieve data from multiple sources
- Example#3650 - Making a POST request to an https server
- Example#3651 - Writing data to a compressed file
- Example#3652 - A Stream for reading/writing global variables
- Example#3653 - Listing files from tar archives
- Example#3654 - stream_bucket_prepend examples
- Example#3655 - 使用 stream_context_create
- Example#3656 - Using stream_context_get_default
- Example#3657 - stream_context_get_options 的例子
- Example#3658 - stream_context_get_params example
- Example#3659 - stream_context_set_default example
- Example#3660 - A stream_copy_to_stream example
- Example#3661 - Controlling where filters are applied
- Example#3662 - Filter for capitalizing characters on foo-bar.txt stream
- Example#3663 - Registering a generic filter class to match multiple filter names.
- Example#3664 - 动态地重新过滤一个资源流
- Example#3665 - stream_get_contents 例子
- Example#3666 - 使用 stream_get_filters
- Example#3667 - 使用 stream_get_transports
- Example#3668 - stream_get_wrappers 例子
- Example#3669 - 检查一个流类型是否存在
- Example#3670 - stream_is_local example
- Example#3671 - stream_isatty example
- Example#3672 - stream_notification_callback example
- Example#3673 - Simple progressbar for commandline download client
- Example#3674 - stream_resolve_include_path example
- Example#3675 - stream_select Example
- Example#3676 - stream_set_timeout example
- Example#3677 - stream_set_write_buffer example
- Example#3678 - stream_socket_client example
- Example#3679 - Using UDP connection
- Example#3680 - stream_socket_enable_crypto example
- Example#3681 - stream_socket_pair 例子
- Example#3682 - stream_socket_recvfrom example
- Example#3683 - stream_socket_sendto Example
- Example#3684 - Using TCP server sockets
- Example#3685 - Using UDP server sockets
- Example#3686 - A stream_socket_shutdown example
- Example#3687 - 如何注册一个 stream wrapper
- Example#3688 - Basic Tidy usage
- Example#3689 - tidy::getBody example
- Example#3690 - tidy::cleanrepair example
- Example#3691 - tidy::__construct example
- Example#3692 - tidy::diagnose example
- Example#3693 - tidy_get_error_buffer example
- Example#3694 - tidy::getConfig example
- Example#3695 - tidy_getopt example
- Example#3696 - Print all options along with their documentation and default value
- Example#3697 - tidy::getStatus example
- Example#3698 - tidy::head example
- Example#3699 - tidy::html example
- Example#3700 - tidy::parseFile example
- Example#3701 - tidy::parseString example
- Example#3702 - tidy::repairFile example
- Example#3703 - tidy::repairString example
- Example#3704 - tidy::root example
- Example#3705 - tidyNode::hasChildren example
- Example#3706 - tidyNode::hasChildren example
- Example#3707 - tidyNode::hasSiblings example
- Example#3708 - Extract ASP code from a mixed HTML document
- Example#3709 - Extract comments from a mixed HTML document
- Example#3710 - Extract HTML code from a mixed HTML document
- Example#3711 - Extract JSTE code from a mixed HTML document
- Example#3712 - Extract PHP code from a mixed HTML document
- Example#3713 - Extract text from a mixed HTML document
- Example#3714 - ob_tidyhandler example
- Example#3715 - tidy_access_count example
- Example#3716 - tidy_config_count example
- Example#3717 - tidy_error_count example
- Example#3718 - tidy_get_output example
- Example#3719 - tidy_warning_count example
- Example#3720 - Strip comments with the tokenizer
- Example#3721 - PhpToken::getTokenName example
- Example#3722 - PhpToken::is example
- Example#3723 - Usage with array
- Example#3724 - PhpToken::isIgnorable example
- Example#3725 - PhpToken::__toString example
- Example#3726 - PhpToken::tokenize example
- Example#3727 - Extending PhpToken
- Example#3728 - token_get_all examples
- Example#3729 - token_name example
- Example#3730 - base64_decode 示例
- Example#3731 - base64_encode 示例
- Example#3732 - get_headers 例子
- Example#3733 - get_headers using HEAD example
- Example#3734 - get_meta_tags 解析了什么
- Example#3735 - get_meta_tags 返回了什么
- Example#3736 - http_build_query 使用示例
- Example#3737 - http_build_query 使用数字下标的元素
- Example#3738 - http_build_query 使用复杂的数组
- Example#3739 - http_build_query 使用对象
- Example#3740 - parse_url 例子
- Example#3741 - parse_url 解析丢失协议的例子
- Example#3742 - rawurldecode 示例
- Example#3743 - 在 FTP URL 里包含一个密码
- Example#3744 - rawurlencode 示例 2
- Example#3745 - urldecode 示例
- Example#3746 - urlencode 例子
- Example#3747 - urlencode 与 htmlentities 例子
- Example#3748 - Basic Javascript execution
- Example#3749 - Yaml 范例
- Example#3750 - Parse callback example
- Example#3751 - Emit callback example
- Example#3752 - yaml_emit example
- Example#3753 - yaml_parse example
- Example#3754 - 一个典型的应用目录结构
- Example#3755 - 入口文件
- Example#3756 - 重写规则
- Example#3757 - 应用配置文件
- Example#3758 - 默认控制器
- Example#3759 - 默认视图文件
- Example#3760 - 运行应用
- Example#3761 - config为数组的例子
- Example#3762 - config为ini文件的例子
- Example#3763 - A Bootstrapexample
- Example#3764 - Yaf_Application::bootstrapexample
- Example#3765 - Yaf_Application::clearLastErrorexample
- Example#3766 - A ini config file example
- Example#3767 - Yaf_Application::__constructexample
- Example#3768 - Yaf_Application::__constructexample
- Example#3769 - Yaf_Application::environexample
- Example#3770 - Yaf_Application::executeexample
- Example#3771 - Yaf_Application::getConfigexample
- Example#3772 - Yaf_Application::getDispatcherexample
- Example#3773 - Yaf_Application::getLastErrorMsgexample
- Example#3774 - Yaf_Application::getLastErrorNoexample
- Example#3775 - Yaf_Application::getModulesexample
- Example#3776 - Bootstrap example
- Example#3777 - Yaf_Dispatcher::autoRenderexample
- Example#3778 - Yaf_Dispatcher::catchExceptionexample
- Example#3779 - Yaf_Dispatcher::registerPluginexample
- Example#3780 - A custom View engineexample
- Example#3781 - Yaf_Dispatcher::setViewexample
- Example#3782 - Yaf_Dispatcher::throwexceptionexample
- Example#3783 - Yaf_Dispatcher::throwexceptionexample
- Example#3784 - Yaf_Config_Iniexample
- Example#3785 - 在一个独立的文件中定义action
- Example#3786 - Dummy_action.php
- Example#3787 - Yaf_Controller_Abstract::forward例子
- Example#3788 - Yaf_Action_Abstract::executeexample
- Example#3789 - Yaf_Action_Abstract::executeexample
- Example#3790 - Yaf_View_Simple::assignexample
- Example#3791 - templateexample
- Example#3792 - Yaf_View_Simple::assignRefexample
- Example#3793 - templateexample
- Example#3794 - Yaf_View_Simple::clearexample
- Example#3795 - Yaf_View_Simple::__constructorexample
- Example#3796 - Yaf_View_Simple::__setexample
- Example#3797 - Config example
- Example#3798 - 注册本地命名空间
- Example#3799 - 加载类
- Example#3800 - 加载命名空间类
- Example#3801 - MVC类加载例子
- Example#3802 - MVC 类区别
- Example#3803 - MVC loading example
- Example#3804 - Yaf_Loader::registerNamespaceexample
- Example#3805 - Yaf_Loader::registerLocalNamespaceexample
- Example#3806 - Yaf_Loader::registerNamespaceexample
- Example#3807 - Plugin example
- Example#3808 - Yaf_Plugin_Abstract::routerShutdownexample
- Example#3809 - Yaf_Response_Abstract::appendBodyexample
- Example#3810 - Yaf_Response_Abstract::getBodyexample
- Example#3811 - Yaf_Response_Abstract::prependBodyexample
- Example#3812 - Yaf_Response_Abstract::responseexample
- Example#3813 - Yaf_Response_Abstract::setBodyexample
- Example#3814 - Yaf_Route_Map::assembleexample
- Example#3815 - Yaf_Route_Mapexample
- Example#3816 - Yaf_Route_Mapexample
- Example#3817 - Yaf_Route_Mapexample
- Example#3818 - Yaf_Route_Regex::assembleexample
- Example#3819 - Yaf_Route_Regexexample
- Example#3820 - Yaf_Route_Regex(as of 2.3.0)example
- Example#3821 - Yaf_Route_Regexexample
- Example#3822 - Yaf_Route_Rewrite::assembleexample
- Example#3823 - Yaf_Route_Rewriteexample
- Example#3824 - Yaf_Route_Rewriteexample
- Example#3825 - Yaf_Route_Rewrite(as of 2.3.0)example
- Example#3826 - Apache的跳转规则
- Example#3827 - Apache的跳转规则
- Example#3828 - Lighttpd的跳转规则
- Example#3829 - Nginx的跳转规则
- Example#3830 - Yaf_Route_Static(default
route)example
- Example#3831 - application.iniexample
- Example#3832 - Yaf_Dispatcher::autoConfigexample
- Example#3833 - Yaf_Dispatcher::autoRenderexample
- Example#3834 - 注册一些路由到Bootstrap
- Example#3835 - plugin Dummy.php (under application.directory/plugins)
- Example#3836 - Yaf_Route_Simple::assembleexample
- Example#3837 - Yaf_Route_Simple::routeexample
- Example#3838 - Yaf_Route_Simple::routeexample
- Example#3839 - Yaf_Route_Static::assembleexample
- Example#3840 - Yaf_Route_Static::routeexample
- Example#3841 - Yaf_Route_Supervar::assembleexample
- Example#3842 - Yaf_Route_Supervarexample
- Example#3843 - INI example
- Example#3844 - INI sections example
- Example#3845 - INIexample
- Example#3846 - Taintexample
- Example#3847 - Vector
- Example#3848 - Map
- Example#3849 - Ds\Collection::clear example
- Example#3850 - Ds\Collection::copy example
- Example#3851 - Ds\Collection::isEmpty example
- Example#3852 - Ds\Collection::toArray example
- Example#3853 - Ds\Hashable::hash example
- Example#3854 - Ds\Sequence::allocate example
- Example#3855 - Ds\Sequence::apply example
- Example#3856 - Ds\Sequence::capacity example
- Example#3857 - Ds\Sequence::contains example
- Example#3858 - Ds\Sequence::filter example using callback function
- Example#3859 - Ds\Sequence::filter example without a callback function
- Example#3860 - Ds\Sequence::find example
- Example#3861 - Ds\Sequence::first example
- Example#3862 - Ds\Sequence::get example
- Example#3863 - Ds\Sequence::get example using array syntax
- Example#3864 - Ds\Sequence::insert example
- Example#3865 - Ds\Sequence::join example using a separator string
- Example#3866 - Ds\Sequence::join example without a separator string
- Example#3867 - Ds\Sequence::last example
- Example#3868 - Ds\Sequence::map example
- Example#3869 - Ds\Sequence::merge example
- Example#3870 - Ds\Sequence::pop example
- Example#3871 - Ds\Sequence::push example
- Example#3872 - Ds\Sequence::reduce with initial value example
- Example#3873 - Ds\Sequence::reduce without an initial value example
- Example#3874 - Ds\Sequence::remove example
- Example#3875 - Ds\Sequence::reverse example
- Example#3876 - Ds\Sequence::reversed example
- Example#3877 - Ds\Sequence::rotate example
- Example#3878 - Ds\Sequence::set example
- Example#3879 - Ds\Sequence::set example using array syntax
- Example#3880 - Ds\Sequence::shift example
- Example#3881 - Ds\Sequence::slice example
- Example#3882 - Ds\Sequence::sort example
- Example#3883 - Ds\Sequence::sort example using a comparator
- Example#3884 - Ds\Sequence::sorted example
- Example#3885 - Ds\Sequence::sorted example using a comparator
- Example#3886 - Ds\Sequence::sum integer example
- Example#3887 - Ds\Sequence::sum float example
- Example#3888 - Ds\Sequence::unshift example
- Example#3889 - Ds\Vector::allocate example
- Example#3890 - Ds\Vector::apply example
- Example#3891 - Ds\Vector::capacity example
- Example#3892 - Ds\Vector::clear example
- Example#3893 - Ds\Vector::__construct example
- Example#3894 - Ds\Vector::contains example
- Example#3895 - Ds\Vector::copy example
- Example#3896 - Ds\Vector::filter example using callback function
- Example#3897 - Ds\Vector::filter example without a callback function
- Example#3898 - Ds\Vector::find example
- Example#3899 - Ds\Vector::first example
- Example#3900 - Ds\Vector::get example
- Example#3901 - Ds\Vector::get example using array syntax
- Example#3902 - Ds\Vector::insert example
- Example#3903 - Ds\Vector::isEmpty example
- Example#3904 - Ds\Vector::join example using a separator string
- Example#3905 - Ds\Vector::join example without a separator string
- Example#3906 - Ds\Vector::last example
- Example#3907 - Ds\Vector::map example
- Example#3908 - Ds\Vector::merge example
- Example#3909 - Ds\Vector::pop example
- Example#3910 - Ds\Vector::push example
- Example#3911 - Ds\Vector::reduce with initial value example
- Example#3912 - Ds\Vector::reduce without an initial value example
- Example#3913 - Ds\Vector::remove example
- Example#3914 - Ds\Vector::reverse example
- Example#3915 - Ds\Vector::reversed example
- Example#3916 - Ds\Vector::rotate example
- Example#3917 - Ds\Vector::set example
- Example#3918 - Ds\Vector::set example using array syntax
- Example#3919 - Ds\Vector::shift example
- Example#3920 - Ds\Vector::slice example
- Example#3921 - Ds\Vector::sort example
- Example#3922 - Ds\Vector::sort example using a comparator
- Example#3923 - Ds\Vector::sorted example
- Example#3924 - Ds\Vector::sorted example using a comparator
- Example#3925 - Ds\Vector::sum integer example
- Example#3926 - Ds\Vector::sum float example
- Example#3927 - Ds\Vector::toArray example
- Example#3928 - Ds\Vector::unshift example
- Example#3929 - Ds\Deque::allocate example
- Example#3930 - Ds\Deque::apply example
- Example#3931 - Ds\Deque::capacity example
- Example#3932 - Ds\Deque::clear example
- Example#3933 - Ds\Deque::__construct example
- Example#3934 - Ds\Deque::contains example
- Example#3935 - Ds\Deque::copy example
- Example#3936 - Ds\Deque::filter example using callback function
- Example#3937 - Ds\Deque::filter example without a callback function
- Example#3938 - Ds\Deque::find example
- Example#3939 - Ds\Deque::first example
- Example#3940 - Ds\Deque::get example
- Example#3941 - Ds\Deque::get example using array syntax
- Example#3942 - Ds\Deque::insert example
- Example#3943 - Ds\Deque::isEmpty example
- Example#3944 - Ds\Deque::join example using a separator string
- Example#3945 - Ds\Deque::join example without a separator string
- Example#3946 - Ds\Deque::last example
- Example#3947 - Ds\Deque::map example
- Example#3948 - Ds\Deque::merge example
- Example#3949 - Ds\Deque::pop example
- Example#3950 - Ds\Deque::push example
- Example#3951 - Ds\Deque::reduce with initial value example
- Example#3952 - Ds\Deque::reduce without an initial value example
- Example#3953 - Ds\Deque::remove example
- Example#3954 - Ds\Deque::reverse example
- Example#3955 - Ds\Deque::reversed example
- Example#3956 - Ds\Deque::rotate example
- Example#3957 - Ds\Deque::set example
- Example#3958 - Ds\Deque::set example using array syntax
- Example#3959 - Ds\Deque::shift example
- Example#3960 - Ds\Deque::slice example
- Example#3961 - Ds\Deque::sort example
- Example#3962 - Ds\Deque::sort example using a comparator
- Example#3963 - Ds\Deque::sorted example
- Example#3964 - Ds\Deque::sorted example using a comparator
- Example#3965 - Ds\Deque::sum integer example
- Example#3966 - Ds\Deque::sum float example
- Example#3967 - Ds\Deque::toArray example
- Example#3968 - Ds\Deque::unshift example
- Example#3969 - Ds\Map::allocate example
- Example#3970 - Ds\Map::apply example
- Example#3971 - Ds\Map::capacity example
- Example#3972 - Ds\Map::clear example
- Example#3973 - Ds\Map::__construct example
- Example#3974 - Ds\Map::copy example
- Example#3975 - Ds\Map::diff example
- Example#3976 - Ds\Map::filter example using callback function
- Example#3977 - Ds\Map::filter example without a callback function
- Example#3978 - Ds\Map::first example
- Example#3979 - Ds\Map::get example
- Example#3980 - Ds\Map::get example using array syntax
- Example#3981 - Ds\Map::hasKey example
- Example#3982 - Ds\Map::hasValue example
- Example#3983 - Ds\Map::intersect example
- Example#3984 - Ds\Map::isEmpty example
- Example#3985 - Ds\Map::keys example
- Example#3986 - Ds\Map::ksort example
- Example#3987 - Ds\Map::ksort example using a comparator
- Example#3988 - Ds\Map::ksorted example
- Example#3989 - Ds\Map::ksorted example using a comparator
- Example#3990 - Ds\Map::last example
- Example#3991 - Ds\Map::map example
- Example#3992 - Ds\Map::merge example
- Example#3993 - Ds\Map::pairs example
- Example#3994 - Ds\Map::put example
- Example#3995 - Ds\Map::put example using objects as keys
- Example#3996 - Ds\Map::putAll example
- Example#3997 - Ds\Map::reduce with initial value example
- Example#3998 - Ds\Map::reduce without an initial value example
- Example#3999 - Ds\Map::remove example
- Example#4000 - Ds\Map::reverse example
- Example#4001 - Ds\Map::reversed example
- Example#4002 - Ds\Map::skip example
- Example#4003 - Ds\Map::slice example
- Example#4004 - Ds\Map::sort example
- Example#4005 - Ds\Map::sort example using a comparator
- Example#4006 - Ds\Map::sort example
- Example#4007 - Ds\Map::sort example using a comparator
- Example#4008 - Ds\Map::sum integer example
- Example#4009 - Ds\Map::sum float example
- Example#4010 - Ds\Map::toArray example
- Example#4011 - Ds\Map::union example
- Example#4012 - Ds\Map::values example
- Example#4013 - Ds\Map::xor example
- Example#4014 - Ds\Pair::clear example
- Example#4015 - Ds\Pair::copy example
- Example#4016 - Ds\Pair::isEmpty example
- Example#4017 - Ds\Pair::toArray example
- Example#4018 - Ds\Set::add example using integers
- Example#4019 - Ds\Set::add example using objects
- Example#4020 - Ds\Set::allocate example
- Example#4021 - Ds\Set::capacity example
- Example#4022 - Ds\Set::clear example
- Example#4023 - Ds\Set::__construct example
- Example#4024 - Ds\Set::contains example
- Example#4025 - Ds\Set::copy example
- Example#4026 - Ds\Set::diff example
- Example#4027 - Ds\Set::filter example using callback function
- Example#4028 - Ds\Set::filter example without a callback function
- Example#4029 - Ds\Set::first example
- Example#4030 - Ds\Set::get example
- Example#4031 - Ds\Set::get example using array syntax
- Example#4032 - Ds\Set::intersect example
- Example#4033 - Ds\Set::isEmpty example
- Example#4034 - Ds\Set::join example using a separator string
- Example#4035 - Ds\Set::join example without a separator string
- Example#4036 - Ds\Set::last example
- Example#4037 - Ds\Set::merge example
- Example#4038 - Ds\Set::reduce with initial value example
- Example#4039 - Ds\Set::reduce without an initial value example
- Example#4040 - Ds\Set::remove example
- Example#4041 - Ds\Set::reverse example
- Example#4042 - Ds\Set::reversed example
- Example#4043 - Ds\Set::slice example
- Example#4044 - Ds\Set::sort example
- Example#4045 - Ds\Set::sort example using a comparator
- Example#4046 - Ds\Set::sorted example
- Example#4047 - Ds\Set::sorted example using a comparator
- Example#4048 - Ds\Set::sum integer example
- Example#4049 - Ds\Set::sum float example
- Example#4050 - Ds\Set::toArray example
- Example#4051 - Ds\Set::union example
- Example#4052 - Ds\Set::xor example
- Example#4053 - Ds\Stack::clear example
- Example#4054 - Ds\Stack::__construct example
- Example#4055 - Ds\Stack::copy example
- Example#4056 - Ds\Stack::isEmpty example
- Example#4057 - Ds\Stack::peek example
- Example#4058 - Ds\Stack::pop example
- Example#4059 - Ds\Stack::push example
- Example#4060 - Ds\Stack::toArray example
- Example#4061 - Ds\Queue::allocate example
- Example#4062 - Ds\Queue::capacity example
- Example#4063 - Ds\Queue::clear example
- Example#4064 - Ds\Queue::__construct example
- Example#4065 - Ds\Queue::copy example
- Example#4066 - Ds\Queue::isEmpty example
- Example#4067 - Ds\Queue::peek example
- Example#4068 - Ds\Queue::pop example
- Example#4069 - Ds\Queue::push example
- Example#4070 - Ds\Queue::toArray example
- Example#4071 - Ds\PriorityQueue::allocate example
- Example#4072 - Ds\PriorityQueue::capacity example
- Example#4073 - Ds\PriorityQueue::clear example
- Example#4074 - Ds\PriorityQueue::__construct example
- Example#4075 - Ds\PriorityQueue::copy example
- Example#4076 - Ds\PriorityQueue::isEmpty example
- Example#4077 - Ds\PriorityQueue::peek example
- Example#4078 - Ds\PriorityQueue::pop example
- Example#4079 - Ds\PriorityQueue::push example
- Example#4080 - Ds\PriorityQueue::toArray example
- Example#4081 - var_representation Examples
- Example#4082 - Escaping control characters
- Example#4083 - Exporting stdClass
- Example#4084 - Exporting classes
- Example#4085 - Using __set_state()
- Example#4086 - 使用 PHP cURL 模块获取 example.com 的主页
- Example#4087 - 初始化新的 cURL 会话,并获取一张网页
- Example#4088 - 复制一个cURL句柄
- Example#4089 - curl_errno 例子
- Example#4090 - curl_error 例子
- Example#4091 - curl_escape 示例
- Example#4092 - 获取网页
- Example#4093 - curl_getinfo example
- Example#4094 - 初始化新的 cURL 会话并获取一个网页
- Example#4095 - curl_multi_add_handle example
- Example#4096 - curl_multi_close example
- Example#4097 - curl_multi_exec example
- Example#4098 - 一个curl_multi_info_read范例
- Example#4099 - curl_multi_init example
- Example#4100 - curl_multi_strerror 函数的范例:
- Example#4101 - curl_reset 示例
- Example#4102 - 初始化新的 cURL 会话并抓取 web 页面
- Example#4103 - 我们对curl_setopt_array的等价实现
- Example#4104 - 初始化一个新的cURL会话并获取一个网页
- Example#4105 - 上传文件 (PHP 5.5.0 后被废弃)
- Example#4106 - curl_share_setopt 函数范例:
- Example#4107 - curl_share_init 函数的范例:
- Example#4108 - curl_share_setopt 函数的范例:
- Example#4109 - curl_errno 函数的范例:
- Example#4110 - curl_escape 示例
- Example#4111 - curl_version 例子
- Example#4112 - CURLFile::__construct 示例
- Example#4113 - CURLStringFile::__construct 示例
- Example#4114 - Simple HTTP client
- Example#4115 - HTTP client using asynchronous DNS resolver
- Example#4116 - Echo server
- Example#4117 - SSL echo server
- Example#4118 - Signal handler
- Example#4119 - Use libevent's loop to process requests of `eio' extension
- Example#4120 - Miscellaneous
- Example#4121 - Simple HTTP server
- Example#4122 - Simple HTTPS server
- Example#4123 - OpenSSL connection
- Example#4124 - EventHttpConnection::makeRequest example
- Example#4125 - Connection listener based on a UNIX domain socket
- Example#4126 - Simple SMTP server
- Example#4127 - Handling SIGTERM signal
- Example#4128 - Adding a custom signal
- Example#4129 - Adding a timer
- Example#4130 - EventBase::getFeatures example
- Example#4131 - EventBase::getMethod example
- Example#4132 - EventBuffer::search example
- Example#4133 - EventBufferEvent::connect example
- Example#4134 - Connect to UNIX domain socket which presumably is served by a server, read response from
the server and output it to the console
- Example#4135 - EventBufferEvent::connectHost example
- Example#4136 - Buffer event's read callback
- Example#4137 - EventBufferEvent::getOutput example
- Example#4138 - EventBufferEvent::sslError example
- Example#4139 - Simple SMTP server
- Example#4140 - EventConfig::avoidMethod 示例
- Example#4141 - EventConfig::__construct 示例
- Example#4142 - EventConfig::requireFeatures 示例
- Example#4143 - EventHttp::accept example
- Example#4144 - EventHttp::addServerAlias example
- Example#4145 - EventHttp::bind example
- Example#4146 - Simple HTTP server
- Example#4147 - EventHttp::setCallback example
- Example#4148 - EventHttp::setDefaultCallback example
- Example#4149 - EventHttpConnection::makeRequest example
- Example#4150 - EventHttpConnection::setCloseCallback example
- Example#4151 - EventHttpRequest::__construct example
- Example#4152 - EventHttpRequest::sendError example
- Example#4153 - EventListener::__construct example
- Example#4154 - EventSslContext::__construct example
- Example#4155 - FTP 例程
- Example#4156 - ftp_alloc 函数例程
- Example#4157 - ftp_cdup 例子
- Example#4158 - ftp_chdir 例子
- Example#4159 - ftp_chmod 函数例程
- Example#4160 - ftp_close 例子
- Example#4161 - ftp_connect 示例
- Example#4162 - ftp_delete 例子
- Example#4163 - ftp_exec 示例
- Example#4164 - ftp_fget 例子
- Example#4165 - ftp_fput 例子
- Example#4166 - ftp_get_option 示例
- Example#4167 - ftp_get 例子
- Example#4168 - ftp_login 例子
- Example#4169 - ftp_mdtm 示例
- Example#4170 - ftp_mkdir example
- Example#4171 - ftp_mlsd 示例
- Example#4172 - ftp_nb_continue 示例
- Example#4173 - ftp_nb_fget 函数例程
- Example#4174 - ftp_nb_fput 函数例程
- Example#4175 - ftp_nb_get 示例
- Example#4176 - 通过 ftp_nb_get 恢复下载一个文件
- Example#4177 - 使用 ftp_nb_get 从指定位置恢复下载文件
- Example#4178 - ftp_nb_put 示例
- Example#4179 - 使用 ftp_nb_put 来续传文件
- Example#4180 - ftp_nlist 例子
- Example#4181 - ftp_pasv 实例
- Example#4182 - ftp_put 实例
- Example#4183 - ftp_pwd 例子
- Example#4184 - 使用 ftp_raw 登录远程 FTP 服务器
- Example#4185 - ftp_rawlist 示例
- Example#4186 - ftp_rename 例子
- Example#4187 - ftp_rmdir 示例
- Example#4188 - ftp_set_option 例子
- Example#4189 - 向一个 FTP 服务器发送一条 SITE 命令
- Example#4190 - ftp_size 示例
- Example#4191 - ftp_ssl_connect 函数例程
- Example#4192 - ftp_systype 示例
- Example#4193 - Basic Gearman client and worker
- Example#4194 - Basic Gearman client and worker, background
- Example#4195 - Basic Gearman client and worker, submitting tasks
- Example#4196 - Adding two job servers
- Example#4197 - Add two job servers
- Example#4198 - Basic submission of two tasks
- Example#4199 - Basic submission of two tasks with passing application context
- Example#4200 - Two tasks, one background and one not
- Example#4201 - A high priority task along with two normal tasks
- Example#4202 - A low priority task along with two normal tasks
- Example#4203 - Monitor completion of multiple background tasks
- Example#4204 - Simple job submission with immediate return
- Example#4205 - Submitting a job and retrieving incremental status
- Example#4206 - Submit and monitor a background job
- Example#4207 - Simple job submission with immediate return
- Example#4208 - Submitting a job and retrieving incremental status
- Example#4209 - Get the status of a long running job
- Example#4210 - Monitor the status of a long running background job
- Example#4211 - Simple worker making use of extra application context data
- Example#4212 - Add alternate Gearman servers
- Example#4213 - Add two job servers
- Example#4214 - GearmanWorker::setId example
- Example#4215 - A simple worker with a 5 second timeout
- Example#4216 - Running worker in non-blocking mode
- Example#4217 - GearmanWorker::work example
- Example#4218 - Testing support for paged result control
- Example#4219 - LDAP search example
- Example#4220 - Bind with policy information
- Example#4221 - Modify description only if it's not empty
- Example#4222 - Read some values before deletion
- Example#4223 - Delete a reference
- Example#4224 - Use pagination for a search
- Example#4225 - Complete example with authenticated bind
- Example#4226 - 使用 LDAP Bind
- Example#4227 - Using LDAP Bind Anonymously
- Example#4228 - Complete example of password check
- Example#4229 - Example of connecting to LDAP server.
- Example#4230 - Example of connecting securely to LDAP server.
- Example#4231 - LDAP pagination
- Example#4232 - LDAP pagination
- Example#4233 - ldap_count_entries example
- Example#4234 - Enumerating all LDAP error messages
- Example#4235 - Generating and catching an error
- Example#4236 - Searching for an email address
- Example#4237 - PASSWD extended operation
- Example#4238 - Whoami extended operation
- Example#4239 - Show the list of attributes held for a particular directory entry
- Example#4240 - Check protocol version
- Example#4241 - List all values of the "mail" attribute for a
directory entry
- Example#4242 - Produce a list of all organizational units of an organization
- Example#4243 - Add a telephone number to a contact
- Example#4244 - Rename a user
- Example#4245 - Add two e-mail addresses to a user
- Example#4246 - Change a user's password
- Example#4247 - Change a user's password (Active Directory)
- Example#4248 - ldap_parse_result example
- Example#4249 - LDAP search
- Example#4250 - Set protocol version
- Example#4251 - Set server controls
- Example#4252 - LDAP sort
- Example#4253 - memcache扩展概览示例
- Example#4254 - 使用memcache的session处理器
- Example#4255 - Memcache::add示例
- Example#4256 - Memcache::addServer 示例
- Example#4257 - Memcache::close示例
- Example#4258 - Memcache::connect example
- Example#4259 - Memcache::decrement example
- Example#4260 - Memcache::delete example
- Example#4261 - Memcache::flush示例
- Example#4262 - Memcache::get 示例
- Example#4263 - Memcache::getExtendedStats 示例
- Example#4264 - Memcache::getServerStatus 示例
- Example#4265 - Memcache::getVersion 示例
- Example#4266 - Memcache::increment示例
- Example#4267 - Memcache::pconnect示例
- Example#4268 - Memcache::replace示例
- Example#4269 - Memcache::set 示例
- Example#4270 - Memcache::set 示例
- Example#4271 - Memcache::setCompressThreshold 示例
- Example#4272 - Memcache::setServerParams 示例
- Example#4273 - 结果回调示例
- Example#4274 - 通读回调示例
- Example#4275 - Memcached::addServer example
- Example#4276 - Memcached::addServers示例
- Example#4277 - Memcached::append示例
- Example#4278 - Memcached::cas 示例
- Example#4279 - 创建一个Memcached对象
- Example#4280 - Memcached::decrement 示例
- Example#4281 - Memcached::delete 示例
- Example#4282 - Memcached::fetch 示例
- Example#4283 - Memcached::getDelayed 示例
- Example#4284 - Memcached::flush 示例
- Example#4285 - Memcached::get 示例 #1
- Example#4286 - Memcached::get 示例 #2
- Example#4287 - Memcached::getDelayed 示例
- Example#4288 - Memcached::getMulti 的 Memcached v3 示例
- Example#4289 - Memcached::getMulti 的 Memcached v1 和 v2 示例
- Example#4290 - Memcached::GET_PRESERVE_ORDER 的 Memcached v3 示例
- Example#4291 - Memcached::GET_PRESERVE_ORDER 的 Memcached v1 和 v2 示例
- Example#4292 - 获取Memcached选项
- Example#4293 - Memcached::getResultCode 示例
- Example#4294 - Memcached::getResultMessage 示例
- Example#4295 - Memcached::getServerByKey 示例
- Example#4296 - Memcached::getServerList 示例
- Example#4297 - Memcached::getStats 示例
- Example#4298 - Memcached::getVersion 示例
- Example#4299 - Memcached::increment 示例
- Example#4300 - Memcached::prepend 示例
- Example#4301 - Memcached::set 示例
- Example#4302 - Memcached::setByKey 示例
- Example#4303 - Memcached::setMulti 示例
- Example#4304 - 设置一个memcached选项值
- Example#4305 - Setting Memcached options
- Example#4306 - mqseries_back
example
- Example#4307 - mqseries_begin
example
- Example#4308 - mqseries_close
example
- Example#4309 - mqseries_cmit
example
- Example#4310 - mqseries_conn
example
- Example#4311 - mqseries_connx
example
- Example#4312 - mqseries_connx
example using SSL connection & OCSP Responder URL
- Example#4313 - mqseries_disc
example
- Example#4314 - mqseries_get
example
- Example#4315 - mqseries_inq
example
- Example#4316 - mqseries_open
example
- Example#4317 - mqseries_put
example
- Example#4318 - mqseries_strerror
example
- Example#4319 - 使用 dns_get_record函数
- Example#4320 - 使用dns_get_record配合DNS_ANY的例子
- Example#4321 - fsockopen的例子
- Example#4322 - 使用UDP连接
- Example#4323 - 一个使用 gethostbyaddr 的简单例子
- Example#4324 - 简单的 gethostbyname 例子
- Example#4325 - gethostbynamel 例子
- Example#4326 - 简单的 gethostname 例子
- Example#4327 - getprotobyname example
- Example#4328 - getservbyname 例子
- Example#4329 - header_register_callback 例子
- Example#4330 - 取消指定的头
- Example#4331 - 取消之前全部指定的头
- Example#4332 - 下载对话框
- Example#4333 - 缓存指令
- Example#4334 - 使用 headers_list 的例子
- Example#4335 - 使用 headers_sent 的例子
- Example#4336 - Web 服务器环境内使用 http_response_code
- Example#4337 - 在 CLI 环境内使用 http_response_code
- Example#4338 - inet_ntop Example
- Example#4339 - inet_pton Example
- Example#4340 - ip2long 例子
- Example#4341 - 显示IP地址
- Example#4342 - setcookie 发送例子
- Example#4343 - setcookie 删除例子
- Example#4344 - setcookie 和数组
- Example#4345 - Using syslog
- Example#4346 - Procedural usage of rrd
- Example#4347 - OO usage of rrd
- Example#4348 - RRDGraph::setOptions example
- Example#4349 - Set multiple color options
- Example#4350 - RRDUpdater::update examples
- Example#4351 - Fetch instrumented calls
- Example#4352 - Fetch the list of functions scoutapm will instrument
- Example#4353 - snmp_get_quick_print 示例
- Example#4354 - Using snmp_get_valueretrieval
- Example#4355 - Using snmp_read_mib
- Example#4356 - Using snmp_set_enum_print
- Example#4357 - Using snmprealwalk
- Example#4358 - Using
snmp_set_valueretrieval
- Example#4359 - Using snmp2_get
- Example#4360 - Using snmp2_get_next
- Example#4361 - Using snmp2_real_walk
- Example#4362 - Using snmp2_set
- Example#4363 - Using snmp2_set for setting BITS SNMP object id
- Example#4364 - snmp2_walk Example
- Example#4365 - Using snmp3_get
- Example#4366 - Using snmp3_getnext
- Example#4367 - Using
snmp3_real_walk
- Example#4368 - Using snmp3_set
- Example#4369 - Using snmp3_set for setting BITS SNMP object id
- Example#4370 - snmp3_walk Example
- Example#4371 - Using snmpgetnext
- Example#4372 - Using snmprealwalk
- Example#4373 - SNMP::close example
- Example#4374 - Fetching sysLocation
- Example#4375 - Single SNMP object
- Example#4376 - Multiple SNMP objects
- Example#4377 - SNMP::getErrno example
- Example#4378 - SNMP::getError example
- Example#4379 - Single SNMP object
- Example#4380 - Miltiple SNMP objects
- Example#4381 - Set single SNMP object id
- Example#4382 - Set multiple values using single SNMP::set
call
- Example#4383 - Using SNMP::set for setting BITS SNMP object id
- Example#4384 - SNMP::setSecurity example
- Example#4385 - SNMP::walk example
- Example#4386 - suffixAsKey example
- Example#4387 - Socket举例:简单的TCP/IP服务器
- Example#4388 - Socket举例:简单的TCP/IP客户端
- Example#4389 - 使用 socket_bind 来设置套接字资源地址
- Example#4390 - socket_create_pair example
- Example#4391 - socket_create_pair IPC example
- Example#4392 - socket_get_option example
- Example#4393 - socket_import_stream example
- Example#4394 - socket_last_error example
- Example#4395 - socket_recv 范例
- Example#4396 - socket_recvfrom example
- Example#4397 - Using null with socket_select
- Example#4398 - Understanding socket_select's result
- Example#4399 - socket_select example
- Example#4400 - socket_sendto Example
- Example#4401 - socket_set_block example
- Example#4402 - socket_set_nonblock example
- Example#4403 - socket_set_option example
- Example#4404 - socket_strerror example
- Example#4405 - Authenticating with a ssh agent
- Example#4406 - Authentication using a public hostkey
- Example#4407 - Retrieving a list of authentication methods
- Example#4408 - Authenticating with a password
- Example#4409 - Authentication using a public key
- Example#4410 - ssh2_connect example
- Example#4411 - Executing a command
- Example#4412 - Opening a shell and retrieving the stderr stream associated with it
- Example#4413 - Checking the fingerprint against a known value
- Example#4414 - Determining what methods were negotiated
- Example#4415 - Adding a publickey with ssh2_publickey_add
- Example#4416 - Listing authorized keys with ssh2_publickey_list
- Example#4417 - Downloading a file via SCP
- Example#4418 - Uploading a file via SCP
- Example#4419 - Changing the mode of a file on a remote server
- Example#4420 - Stating a symbolic link via SFTP
- Example#4421 - Creating a directory on a remote server
- Example#4422 - Reading a symbolic link
- Example#4423 - Resolving a pathname
- Example#4424 - Renaming a file via sftp
- Example#4425 - Removing a directory on a remote server
- Example#4426 - Stating a file via SFTP
- Example#4427 - Creating a symbolic link
- Example#4428 - Deleting a file
- Example#4429 - Opening a file via SFTP
- Example#4430 - Requesting an interactive shell
- Example#4431 - Opening a tunnel to an arbitrary host
- Example#4432 - 面向对象风格
- Example#4433 - 过程化风格
- Example#4434 - stomp_connect_error example
- Example#4435 - stomp_version example
- Example#4436 - 面向对象风格
- Example#4437 - 过程化风格
- Example#4438 - 面向对象风格
- Example#4439 - 过程化风格
- Example#4440 - 面向对象风格
- Example#4441 - 过程化风格
- Example#4442 - 面向对象风格
- Example#4443 - 过程化风格
- Example#4444 - 面向对象风格
- Example#4445 - 过程化风格
- Example#4446 - 面向对象风格
- Example#4447 - 过程化风格
- Example#4448 - 面向对象风格
- Example#4449 - 过程化风格
- Example#4450 - 面向对象风格
- Example#4451 - 过程化风格
- Example#4452 - 面向对象风格
- Example#4453 - 过程化风格
- Example#4454 - Train from array
- Example#4455 - Train from a file
- Example#4456 - svn_add 例子
- Example#4457 - Default authentication example
- Example#4458 - svn_blame example
- Example#4459 - Basic example
- Example#4460 - Basic example
- Example#4461 - Basic example
- Example#4462 - Basic example
- Example#4463 - 基本示例
- Example#4464 - Basic example
- Example#4465 - Diffing two revisions of a repository path
- Example#4466 - Portably diffing two local files
- Example#4467 - svn_export example
- Example#4468 - Basic example
- Example#4469 - svn_log example
- Example#4470 - svn_ls example
- Example#4471 - Basic example
- Example#4472 - Basic example
- Example#4473 - Deny all connections from localhost
- Example#4474 - Ban an URL
- Example#4475 - Get statistic snapshot
- Example#4476 - Read varnish shared memory log
- Example#4477 - VarnishAdmin::__construct example
- Example#4478 - Parallel searching using Yaz
- Example#4479 - CCL configuration
- Example#4480 - CCL Parsing
- Example#4481 - Record Update
- Example#4482 - Array for GRS-1 record
- Example#4483 - Working with MARCXML
- Example#4484 - PHP function that scans titles
- Example#4485 - Query Examples
- Example#4486 - Sort Criterias
- Example#4487 - A ZMQContext example
- Example#4488 - A ZMQContext example
- Example#4489 - A ZMQContext example
- Example#4490 - A ZMQSocket example
- Example#4491 - A send/recv example
- Example#4492 - A ZMQPoll example
- Example#4493 - zookeeper_dispatch example #1
- Example#4494 - zookeeper_dispatch example #2
- Example#4495 - Zookeeper::addAuth example
- Example#4496 - Zookeeper::create example
- Example#4497 - Zookeeper::delete example
- Example#4498 - Zookeeper::exists example
- Example#4499 - Zookeeper::get example
- Example#4500 - Zookeeper::get stat example
- Example#4501 - Zookeeper::getAcl example
- Example#4502 - Zookeeper::getChildren example
- Example#4503 - Zookeeper::set example
- Example#4504 - Zookeeper::setAcl example
- Example#4505 - Zookeeper::setDebugLevel example
- Example#4506 - ZookeeperConfig::add example
- Example#4507 - ZookeeperConfig::get example
- Example#4508 - ZookeeperConfig::remove example
- Example#4509 - ZookeeperConfig::set example
- Example#4510 - solr_get_version example
- Example#4511 - Contents of the BootStrap file
- Example#4512 - Adding a document to the index
- Example#4513 - Merging one document into another document
- Example#4514 - Searching for documents - SolrObject responses
- Example#4515 - Searching for documents - SolrDocument responses
- Example#4516 - Simple TermsComponent example - basic
- Example#4517 - Simple TermsComponent example - using a prefix
- Example#4518 - Simple TermsComponent example - specifying a minimum frequency
- Example#4519 - Simple Facet Example
- Example#4520 - Simple Facet Example - with optional field override for mincount
- Example#4521 - Facet Date Example
- Example#4522 - Connecting to SSL-Enabled Server
- Example#4523 - Collapsing a SolrQuery
- Example#4524 - Solr Real Time Get (RTG) example SolrClient::getById
- Example#4525 - SolrInputDocument::addChildDocument example
- Example#4526 - SolrInputDocument::addChildDocuments example
- Example#4527 - SolrDocument::toArray example
- Example#4528 - SolrObject::__construct example
- Example#4529 - SolrObject::offsetUnset example
- Example#4530 - SolrClient::addDocument example
- Example#4531 - SolrClient::addDocument example 2
- Example#4532 - SolrClient::addDocuments example
- Example#4533 - SolrClient::__construct example
- Example#4534 - SolrQuery::deleteByQuery example
- Example#4535 - SolrClient::getById example
- Example#4536 - SolrClient::getByIds example
- Example#4537 - SolrClient::ping example
- Example#4538 - SolrClient::query example
- Example#4539 - SolrClient::request example
- Example#4540 - SolrClient::setResponseWriter example
- Example#4541 - SolrParams::setParam example
- Example#4542 - SolrQuery::addFacetField example
- Example#4543 - SolrQuery::addFacetField example
- Example#4544 - SolrQuery::addFilterQuery example
- Example#4545 - SolrQuery::addGroupSortField example
- Example#4546 - SolrQuery::collapse example
- Example#4547 - SolrQuery::setExpand example
- Example#4548 - SolrDisMaxQuery::addBigramPhraseField example
- Example#4549 - SolrDisMaxQuery::addBoostQuery example
- Example#4550 - SolrDisMaxQuery::addPhraseField example
- Example#4551 - SolrDisMaxQuery::addQueryField example
- Example#4552 - SolrDisMaxQuery::addTrigramPhraseField example
- Example#4553 - SolrDisMaxQuery::addUserField example
- Example#4554 - SolrDisMaxQuery::__construct example
- Example#4555 - SolrDisMaxQuery::removeBigramPhraseField example
- Example#4556 - SolrDisMaxQuery::removeBoostQuery example
- Example#4557 - SolrDisMaxQuery::removePhraseField example
- Example#4558 - SolrDisMaxQuery::removeQueryField example
- Example#4559 - SolrDisMaxQuery::removeTrigramPhraseField example
- Example#4560 - SolrDisMaxQuery::removeUserField example
- Example#4561 - SolrDisMaxQuery::setBigramPhraseFields example
- Example#4562 - SolrDisMaxQuery::setBigramPhraseSlop example
- Example#4563 - SolrDisMaxQuery::setBoostFunction example
- Example#4564 - SolrDisMaxQuery::setBoostQuery example
- Example#4565 - SolrDisMaxQuery::setMinimumMatch example
- Example#4566 - SolrDisMaxQuery::setPhraseFields example
- Example#4567 - SolrDisMaxQuery::setPhraseSlop example
- Example#4568 - SolrDisMaxQuery::setQueryAlt example
- Example#4569 - SolrDisMaxQuery::setQueryPhraseSlop example
- Example#4570 - SolrDisMaxQuery::setTieBreaker example
- Example#4571 - SolrDisMaxQuery::setTrigramPhraseFields example
- Example#4572 - SolrDisMaxQuery::setTrigramPhraseSlop example
- Example#4573 - SolrDisMaxQuery::setUserFields example
- Example#4574 - SolrDisMaxQuery::useDisMaxQueryParser example
- Example#4575 - SolrDisMaxQuery::useEDisMaxQueryParser example
- Example#4576 - SolrCollapseFunction::__construct example
- Example#4577 - SolrCollapseFunction::setHint example
- Example#4578 - SolrCollapseFunction::setMax example
- Example#4579 - 用 .htaccess 禁用一个目录的 PHP 解析
- Example#4580 - apache_get_modules 示例
- Example#4581 - apache_get_version 示例
- Example#4582 - apache_getenv 示例
- Example#4583 - apache_lookup_uri 例子
- Example#4584 - 在 PHP 与 Perl 之间传递信息
- Example#4585 - 在 access.log 中记录值
- Example#4586 - apache_request_headers 示例
- Example#4587 - apache_response_headers 示例
- Example#4588 - 使用 apache_setenv 设置一个 Apache 环境变量
- Example#4589 - getallheaders 示例
- Example#4590 - 在 $_SESSION 中注册变量。
- Example#4591 - 从 $_SESSION 中反注册变量。
- Example#4592 - 某单一用户的点击数
- Example#4593 - 样例信息
- Example#4594 - session_cache_expire 示例
- Example#4595 - session_cache_limiter 示例
- Example#4596 - session_create_id example with session_regenerate_id
- Example#4597 - 销毁会话数据以及 $_SESSION
- Example#4598 - session_gc example for task managers like cron
- Example#4599 - session_gc example for user accessible script
- Example#4600 - session_name 示例
- Example#4601 - A session_regenerate_id 示例
- Example#4602 - Avoiding lost session by session_regenerate_id
- Example#4603 - 自定义会话管理器: 完整代码请参见 SessionHandlerInterface。
- Example#4604 - page1.php
- Example#4605 - page2.php
- Example#4606 - 覆盖 Cookie 超时时间设定
- Example#4607 - 读取会话之后立即关闭会话存储文件
- Example#4608 - Using SessionHandler to add encryption to internal PHP save handlers.
- Example#4609 - Example using SessionHandlerInterface
- Example#4610 - Tokenize comma separated integer list
- Example#4611 - Tokenize assign statement
- Example#4612 - Simple calculator
- Example#4613 - Parse words out from a sentence
- Example#4614 - 合法模式示例
- Example#4615 - 非法模式示例
- Example#4616 - 比较preg_filter
和preg_replace的示例
- Example#4617 - preg_grep 示例
- Example#4618 - preg_last_error_msg example
- Example#4619 - preg_last_error 示例
- Example#4620 - 查找所有文本中的电话号码。
- Example#4621 - 查找匹配的HTML标签(贪婪)
- Example#4622 - 使用子命名组
- Example#4623 - 查找文本字符串"php"
- Example#4624 - 查找单词"word"
- Example#4625 - 获取URL中的域名
- Example#4626 - 使用命名子组
- Example#4627 - preg_quote示例
- Example#4628 - 将文本中的单词替换为斜体
- Example#4629 - preg_replace_callback_array example
- Example#4630 - preg_replace_callback 和
匿名函数
- Example#4631 - preg_replace_callback示例
- Example#4632 - preg_replace_callback 使用递归构造处理 BB 码的封装
- Example#4633 - 使用后向引用紧跟数值原文
- Example#4634 - preg_replace 中使用基于索引的数组
- Example#4635 - 替换一些值
- Example#4636 - 剥离空白字符
- Example#4637 - 使用参数 count
- Example#4638 - preg_split示例:获取搜索字符串的部分
- Example#4639 - 将一个字符串分隔为组成它的字符
- Example#4640 - 分隔一个字符串并获取每部分的偏移量
- Example#4641 - addcslashes 例子
- Example#4642 - 一个 addslashes 例子
- Example#4643 - chr 例子
- Example#4644 - chunk_split 例子
- Example#4645 - convert_uudecode 例子
- Example#4646 - convert_uuencode 例子
- Example#4647 - count_chars 示例
- Example#4648 - 显示一个 crc32 校验码
- Example#4649 - crypt 范例
- Example#4650 - 利用 htpasswd 进行 crypt 加密
- Example#4651 - 以不同散列类型使用 crypt
- Example#4652 - echo 例子
- Example#4653 - explode 例子
- Example#4654 - explode return examples
- Example#4655 - limit 参数的例子
- Example#4656 - fprintf: zero-padded integers
- Example#4657 - fprintf: formatting currency
- Example#4658 - Translation Table Example
- Example#4659 - hex2bin 例子
- Example#4660 - Decoding HTML entities
- Example#4661 - htmlentities 例子
- Example#4662 - ENT_IGNORE 用法示例
- Example#4663 - 一个 htmlspecialchars_decode 的例子
- Example#4664 - htmlspecialchars 例子
- Example#4665 - implode 例子
- Example#4666 - lcfirst 例子:
- Example#4667 - levenshtein 例子:
- Example#4668 - localeconv example
- Example#4669 - ltrim的使用范例
- Example#4670 - md5_file 使用范例
- Example#4671 - md5 范例
- Example#4672 - metaphone basic example
- Example#4673 - Using the max_phonemes parameter
- Example#4674 - Using the max_phonemes parameter
- Example#4675 - money_format 例子
- Example#4676 - nl_langinfo example
- Example#4677 - nl2br 使用范例
- Example#4678 - 使用 is_xhtml 生成合法的 HTML 标记
- Example#4679 - 各种换行分隔符
- Example#4680 - number_format Example
- Example#4681 - ord 范例
- Example#4682 - 检查 UTF-8 字符串的每一个字节
- Example#4683 - parse_str 的使用
- Example#4684 - parse_str 名称改写
- Example#4685 - print 范例
- Example#4686 - rtrim 使用范例
- Example#4687 - setlocale Examples
- Example#4688 - setlocale Examples for Windows
- Example#4689 - sha1_file 范例
- Example#4690 - sha1 范例
- Example#4691 - Soundex Examples
- Example#4692 - 参数替换
- Example#4693 - 指定填充字符
- Example#4694 - 位置说明符与其他说明符
- Example#4695 - sprintf: 零填充整数
- Example#4696 - sprintf: 货币格式
- Example#4697 - sprintf: 科学记数法
- Example#4698 - sscanf 例子
- Example#4699 - sscanf - using optional parameters
- Example#4700 - Using the empty string ''
- Example#4701 - Showing case-sensitivity
- Example#4702 - Using the empty string ''
- Example#4703 - Showing case-sensitivity
- Example#4704 - str_ireplace 范例
- Example#4705 - str_pad 范例
- Example#4706 - str_repeat 范例
- Example#4707 - str_replace 基本范例
- Example#4708 - 可能的 str_replace 替换范例
- Example#4709 - str_rot13 范例
- Example#4710 - str_shuffle 范例
- Example#4711 - str_split 使用范例
- Example#4712 - Using the empty string ''
- Example#4713 - Showing case-sensitivity
- Example#4714 - str_word_count 范例
- Example#4715 - strcasecmp 范例
- Example#4716 - strcmp 例子
- Example#4717 - strcspn example
- Example#4718 - strip_tags 范例
- Example#4719 - stripos 范例
- Example#4720 - stripslashes 范例
- Example#4721 - 对数组使用 stripslashes
- Example#4722 - stristr 范例
- Example#4723 - 测试字符串的存在与否
- Example#4724 - 使用非字符串 needle
- Example#4725 - strlen 范例
- Example#4726 - strpbrk 范例
- Example#4727 - 使用 ===
- Example#4728 - 使用 !==
- Example#4729 - 使用位置偏移量
- Example#4730 - strrchr 范例
- Example#4731 - 使用 strrev 反转字符串
- Example#4732 - strripos 简单范例
- Example#4733 - 检查字串是否存在
- Example#4734 - 使用偏移位置进行查找
- Example#4735 - strspn 范例
- Example#4736 - strstr 范例
- Example#4737 - strtok 示例
- Example#4738 - 当 strtok 找不到标记时的反应
- Example#4739 - strtok 和 explode 的不同点
- Example#4740 - strtolower 范例
- Example#4741 - strtoupper 范例
- Example#4742 - strtr 范例
- Example#4743 - 使用两个参数的 strtr 范例
- Example#4744 - strtr behavior comparison
- Example#4745 - substr_compare 范例
- Example#4746 - substr_count 范例
- Example#4747 - substr_replace 范例
- Example#4748 - Using substr_replace to replace multiple strings at
once
- Example#4749 - 使用负数 offset
- Example#4750 - 使用负数 length
- Example#4751 - substr 基本用法
- Example#4752 - substr casting behaviour
- Example#4753 -
- Example#4754 - 无效字符范围
- Example#4755 - trim 使用范例
- Example#4756 - 使用 trim 清理数组值
- Example#4757 - ucfirst 范例
- Example#4758 - ucwords 范例
- Example#4759 - ucwords 自定义 delimiters 的例子
- Example#4760 - Basic examples
- Example#4761 - Basic example
- Example#4762 - vfprintf: 前导 0 的整数
- Example#4763 - vprintf: 前导 0 的整数
- Example#4764 - vsprintf: 前导 0 的整数
- Example#4765 - wordwrap 范例
- Example#4766 - wordwrap 范例
- Example#4767 - wordwrap 例子
- Example#4768 - array_change_key_case例一
- Example#4769 - array_chunk 例子
- Example#4770 - 从结果集中取出 first_name 列
- Example#4771 - 从结果集中总取出 last_name 列,用相应的“id”作为键值
- Example#4772 - username 列是从对象获取 public 的 "username" 属性
- Example#4773 - 通过 __get 魔术方法从对象中获取 private 属性的 "name" 列。
- Example#4774 - 一个 array_combine 简单的例子
- Example#4775 - array_count_values 例子
- Example#4776 - array_diff_assoc 例子
- Example#4777 - array_diff_assoc 示例
- Example#4778 - array_diff_key 例
- Example#4779 - array_diff_uassoc 例子
- Example#4780 - array_diff_ukey 例子
- Example#4781 - array_diff 例子
- Example#4782 - array_diff 不匹配类型的示例
- Example#4783 - array_fill_keys 范例
- Example#4784 - array_fill 例子
- Example#4785 - array_filter 示例
- Example#4786 - array_filter 不使用 callback 参数时
- Example#4787 - array_filter 不使用 mode 参数时
- Example#4788 - array_flip 例子
- Example#4789 - array_flip 例子 : 冲突
- Example#4790 - array_intersect_assoc 例子
- Example#4791 - array_intersect_key 例子
- Example#4792 - array_intersect_uassoc 例子
- Example#4793 - array_intersect_ukey 例子
- Example#4794 - array_intersect 例子
- Example#4795 - array_is_list 示例
- Example#4796 - array_key_exists 例子
- Example#4797 - array_key_exists 与 isset 的对比
- Example#4798 - array_key_first 基本用法
- Example#4799 - array_keys 例子
- Example#4800 - array_map 例子
- Example#4801 - array_map 使用匿名函数
- Example#4802 - array_map:使用更多的数组
- Example#4803 - 多个数组的合并操作
- Example#4804 - 仅有 array1 时,callback 设置为 null
- Example#4805 - array_map 键(key)是 string
- Example#4806 - array_map - 关联数组
- Example#4807 - array_merge_recursive 例子
- Example#4808 - array_merge 示例
- Example#4809 - 单一结构的 array_merge 示例
- Example#4810 - array_merge 合并非数组的类型
- Example#4811 - 多个数组排序
- Example#4812 - 排序多维数组
- Example#4813 - 对数据库结果进行排序
- Example#4814 - 不区分大小写字母排序
- Example#4815 - array_pad 例子
- Example#4816 - array_pop 例子
- Example#4817 - array_product 例子
- Example#4818 - array_push 例子
- Example#4819 - array_rand 例子
- Example#4820 - array_reduce 例子
- Example#4821 - array_replace_recursive 范例
- Example#4822 - array_replace_recursive 及其递归表现
- Example#4823 - array_replace 范例
- Example#4824 - array_reverse 例子
- Example#4825 - array_search 例子
- Example#4826 - array_shift 例子
- Example#4827 - array_slice 例子
- Example#4828 - array_slice 于索引从 1 开始的 array
- Example#4829 - array_slice 与混合类型键的 array
- Example#4830 - array_splice 例子
- Example#4831 - 几个以不同表达式实现相同效果的 array_splice 例子
- Example#4832 - array_sum 例子
- Example#4833 - array_udiff_assoc 例子
- Example#4834 - array_udiff_uassoc 例子
- Example#4835 - array_udiff 使用 stdClass 对象的例子
- Example#4836 - array_udiff 使用 DateTime 对象的例子
- Example#4837 - array_uintersect_assoc 例子
- Example#4838 - array_uintersect_uassoc 例子
- Example#4839 - array_uintersect 例子
- Example#4840 - array_unique 例子
- Example#4841 - array_unique 和类型
- Example#4842 - array_unshift 例子
- Example#4843 - array_values 例子
- Example#4844 - array_walk_recursive 例子
- Example#4845 - array_walk 例子
- Example#4846 - array 例子
- Example#4847 - array 的自动索引
- Example#4848 - 从 1 开始索引的 array
- Example#4849 - 访问双引号内的数组
- Example#4850 - arsort 例子
- Example#4851 - asort 例子
- Example#4852 - compact 例子
- Example#4853 - count 例子
- Example#4854 - count 非 Countable|array 的例子 (这是个反例,请勿模仿)
- Example#4855 - 递归 count 例子
- Example#4856 - Countable 对象
- Example#4857 - current 函数使用示例
- Example#4858 - each 例子
- Example#4859 - 用 each 遍历数组
- Example#4860 - end 例子
- Example#4861 - extract 例子
- Example#4862 - in_array 例子
- Example#4863 - in_array 严格类型检查例子
- Example#4864 - in_array 中用数组作为 needle
- Example#4865 - key 例子
- Example#4866 - krsort 例子
- Example#4867 - ksort 例子
- Example#4868 - 对使用 int 键的数组进行 ksort
- Example#4869 - list 例子
- Example#4870 - list 用法的一个例子
- Example#4871 - 使用嵌套的 list
- Example#4872 - list 和索引顺序定义
- Example#4873 - 带键的 list
- Example#4874 - natcasesort 例子
- Example#4875 - natsort 基本用法的操作示例
- Example#4876 - natsort 示例,解释了潜在的陷阱
- Example#4877 - next 及相关函数的用法示例
- Example#4878 - prev 及相关函数用法示例
- Example#4879 - range 例子
- Example#4880 - reset 例子
- Example#4881 - rsort 例
- Example#4882 - shuffle 例子
- Example#4883 - sort 例子
- Example#4884 - 使用 sort 不区分大小写自然排序的例子
- Example#4885 - uasort 的基本例子
- Example#4886 - uksort 例子
- Example#4887 - usort 例子
- Example#4888 - 使用多维数组的 usort 例子
- Example#4889 - usort example using a member function of an object
- Example#4890 - usort 示例,使用闭包对多维数组进行排序
- Example#4891 - classes.inc
- Example#4892 - test_script.php
- Example#4893 - class_alias 例子
- Example#4894 - class_exists 例子
- Example#4895 - autoload parameter 例子
- Example#4896 - enum_exists 例子
- Example#4897 - get_called_class 的使用
- Example#4898 - get_class_methods 示例
- Example#4899 - get_class_vars example
- Example#4900 - get_class_vars and scoping behaviour
- Example#4901 - 使用 get_class
- Example#4902 - 超类中使用 get_class
- Example#4903 - 命名空间中的类使用 get_class
- Example#4904 - get_declared_classes 例子
- Example#4905 - get_declared_interfaces 例子
- Example#4906 - get_mangled_object_vars example
- Example#4907 - 使用 get_object_vars
- Example#4908 - Use of get_object_vars
- Example#4909 - 使用 get_parent_class
- Example#4910 - Using get_parent_class
- Example#4911 - interface_exists 例子
- Example#4912 - is_a 例子
- Example#4913 - 在 PHP 5 中使用 instanceof 运算符
- Example#4914 - is_subclass_of 例子
- Example#4915 - is_subclass_of example
- Example#4916 - method_exists 例子
- Example#4917 - Static method_exists 例子
- Example#4918 - A property_exists example
- Example#4919 - A ctype_alnum 示例 (使用默认的区域设置)
- Example#4920 - 一个 ctype_alpha 例子(使用默认的语言环境)
- Example#4921 - 一个 ctype_cntrl 例子
- Example#4922 - 一个 ctype_digit 例子
- Example#4923 - 一个通过 ctype_digit 来比对字符和整数的例子。
- Example#4924 - 一个 ctype_graph 例子
- Example#4925 - 一个 ctype_lower 例子 (使用默认的语言环境)
- Example#4926 - 一个 ctype_print 例子
- Example#4927 - 一个 ctype_punct 的例子
- Example#4928 - 一个 ctype_space 例子
- Example#4929 - 一个 ctype_upper 例子 (使用当前默认语言环境)
- Example#4930 - 一个 ctype_xdigit 的例子
- Example#4931 - Configuring the default filter to act like htmlspecialchars
- Example#4932 - Configuring the default filter to act like htmlspecialchars
- Example#4933 - Validating email addresses with filter_var
- Example#4934 - Validating IP addresses with filter_var
- Example#4935 - Passing options to filter_var
- Example#4936 - Sanitizing and validating email addresses
- Example#4937 - Configuring a default filter
- Example#4938 - 一个 filter_input_array 的例子
- Example#4939 - 一个 filter_input 的例子
- Example#4940 - 一个 filter_list 的例子
- Example#4941 - 一个 filter_var_array 的例子
- Example#4942 - 一个 filter_var 的示例
- Example#4943 - call_user_func_array例子
- Example#4944 - call_user_func_array使用命名空间的情况
- Example#4945 - 把完整的函数作为回调传入call_user_func_array
- Example#4946 - 传引用
- Example#4947 - call_user_func 的参考例子
- Example#4948 - call_user_func 的例子
- Example#4949 - call_user_func 命名空间的使用
- Example#4950 - 用call_user_func来调用一个类里面的方法
- Example#4951 - 把完整的函数作为回调传入call_user_func
- Example#4952 - Creating an anonymous function with create_function
- Example#4953 - Making a general processing function with
create_function
- Example#4954 - Using anonymous functions as callback functions
- Example#4955 - forward_static_call_array example
- Example#4956 - forward_static_call example
- Example#4957 - func_get_arg 例子
- Example#4958 - func_get_arg PHP 5.3 前后对比的例子
- Example#4959 - func_get_arg example of byref and byval arguments
- Example#4960 - func_get_args 例子
- Example#4961 - PHP 5.3 前后使用 func_get_args 在的对比
- Example#4962 - func_get_args example of byref and byval arguments
- Example#4963 - func_num_args example
- Example#4964 - func_num_args example before and
after PHP 5.3
- Example#4965 - function_exists 的例子
- Example#4966 - get_defined_functions 例子
- Example#4967 - register_shutdown_function 例子
- Example#4968 - register_tick_function 示例
- Example#4969 - Shell 里的一个反射例子(一个终端)
- Example#4970 - 扩展内置的类
- Example#4971 - Reflection::getModifierNames 例子
- Example#4972 - ReflectionClass 的基本用法
- Example#4973 - ReflectionClass::export 的基本用法
- Example#4974 - Basic usage
- Example#4975 - Filtering results by class name
- Example#4976 - Filtering results by class name, with inheritance
- Example#4977 - 使用 ReflectionClass::getConstant
- Example#4978 - ReflectionClass::getConstructor 的基本用法
- Example#4979 - ReflectionClass::getDefaultProperties 例子
- Example#4980 - ReflectionClass::getDocComment 例子
- Example#4981 - ReflectionClass::getEndLine 例子
- Example#4982 - ReflectionClass::getExtension 的基本用法
- Example#4983 - ReflectionClass::getExtensionName 的基本用法
- Example#4984 - ReflectionClass::getInterfaceNames 例子
- Example#4985 - ReflectionClass::getInterfaces 例子
- Example#4986 - ReflectionClass::getMethod 的基本用法
- Example#4987 - ReflectionClass::getMethods 的基本用法
- Example#4988 - 从 ReflectionClass::getMethods 中过滤结果
- Example#4989 - ReflectionClass::getName 例子
- Example#4990 - ReflectionClass::getNamespaceName 例子
- Example#4991 - ReflectionClass::getProperties 过滤例子
- Example#4992 - ReflectionClass::getProperty 的基本用法
- Example#4993 - Basic ReflectionClass::getReflectionConstants example
- Example#4994 - ReflectionClass::getShortName 例子
- Example#4995 - ReflectionClass::getStaticPropertyValue 的基本用法
- Example#4996 - ReflectionClass::hasConstant 例子
- Example#4997 - ReflectionClass::hasMethod 例子
- Example#4998 - ReflectionClass::hasProperty 例子
- Example#4999 - ReflectionClass::inNamespace 例子
- Example#5000 - ReflectionClass::isAbstract 例子
- Example#5001 - ReflectionClass::isAnonymous example
- Example#5002 - ReflectionClass::isCloneable 的基本用法
- Example#5003 - ReflectionClass::isFinal 例子
- Example#5004 - ReflectionClass::isInstance 相关例子
- Example#5005 - ReflectionClass::isInstantiable 例子
- Example#5006 - ReflectionClass::isInterface 基本用法
- Example#5007 - ReflectionClass::isInternal 的基本用法
- Example#5008 - Basic ReflectionClass::isIterable Usage
- Example#5009 - ReflectionClass::isIterateable 例子
- Example#5010 - ReflectionClass::newInstanceArgs 的基本用法
- Example#5011 - ReflectionClass::__toString 例子
- Example#5012 - ReflectionEnum::getBackingType 例子
- Example#5013 - ReflectionEnum::getCase 例子
- Example#5014 - ReflectionEnum::getCases 例子
- Example#5015 - ReflectionEnum::hasCase 例子
- Example#5016 - ReflectionEnum::isBacked 例子
- Example#5017 - ReflectionEnum::getValue 示例
- Example#5018 - ReflectionEnum::getBackingValue 例子
- Example#5019 - ReflectionExtension example
- Example#5020 - ReflectionExtension::getClasses example
- Example#5021 - ReflectionExtension::getClassNames example
- Example#5022 - ReflectionExtension::getConstants example
- Example#5023 - ReflectionExtension::getDependencies example
- Example#5024 - ReflectionExtension::getFunctions example
- Example#5025 - ReflectionExtension::getINIEntries example
- Example#5026 - ReflectionExtension::getName example
- Example#5027 - ReflectionExtension::getVersion example
- Example#5028 - ReflectionExtension::info example
- Example#5029 - ReflectionFunction::__construct example
- Example#5030 - ReflectionFunction::invoke example
- Example#5031 - ReflectionFunction::invokeArgs example
- Example#5032 - ReflectionFunction::invokeArgs with references example
- Example#5033 - ReflectionFunction::__toString example
- Example#5034 - ReflectionFunctionAbstract::getClosureUsedVariables example
- Example#5035 - ReflectionFunctionAbstract::getReturnType example
- Example#5036 - Usage on built-in functions
- Example#5037 - ReflectionFunctionAbstract::hasReturnType example
- Example#5038 - Usage on built-in functions
- Example#5039 - ReflectionFunctionAbstract::isDeprecated example
- Example#5040 - ReflectionMethod::__construct example
- Example#5041 - ReflectionMethod::getDeclaringClass example
- Example#5042 - ReflectionMethod::getModifiers example
- Example#5043 - ReflectionMethod::getPrototype example
- Example#5044 - ReflectionMethod::invoke example
- Example#5045 - ReflectionMethod::invokeArgs example
- Example#5046 - ReflectionMethod::__toString example
- Example#5047 - ReflectionNamedType::isBuiltin 示例
- Example#5048 - Using the ReflectionParameter class
- Example#5049 - 使用 ReflectionParameter 类
- Example#5050 - Getting the class that declared the method
- Example#5051 - Getting default values of function parameters
- Example#5052 - Getting default values' constant names of function parameters
- Example#5053 - ReflectionParameter::getType Usage as of PHP 7.1.0
- Example#5054 - ReflectionParameter::getType Usage before PHP 7.1.0
- Example#5055 - ReflectionParameter::getType Usage in PHP 8.0.0 and later
- Example#5056 - ReflectionParameter::hasType example
- Example#5057 - PHP 8.0.0 equivalent
- Example#5058 - PHP 8.0.0 equivalent
- Example#5059 - ReflectionProperty::__construct example
- Example#5060 - Getting value from private and protected properties using ReflectionProperty class
- Example#5061 - ReflectionProperty::getDefaultValue example
- Example#5062 - ReflectionProperty::getDocComment example
- Example#5063 - Multiple property declarations
- Example#5064 - ReflectionProperty::getType example
- Example#5065 - ReflectionProperty::getValue example
- Example#5066 - ReflectionProperty::hasDefaultValue example
- Example#5067 - ReflectionProperty::hasType example
- Example#5068 - ReflectionProperty::isDefault example
- Example#5069 - ReflectionProperty::isInitialized example
- Example#5070 - ReflectionProperty::isPromoted example
- Example#5071 - Simple Class definition
- Example#5072 - ReflectionProperty::setValue example
- Example#5073 - ReflectionType::allowsNull example
- Example#5074 - ReflectionType::__toString example
- Example#5075 - ReflectionUnionType::getTypes 示例
- Example#5076 - ReflectionGenerator::__construct example
- Example#5077 - ReflectionGenerator::getExecutingFile example
- Example#5078 - ReflectionGenerator::getExecutingGenerator example
- Example#5079 - ReflectionGenerator::getExecutingLine example
- Example#5080 - ReflectionGenerator::getFunction example
- Example#5081 - ReflectionGenerator::getThis example
- Example#5082 - ReflectionGenerator::getTrace example
- Example#5083 - ReflectionIntersectionType::getTypes 示例
- Example#5084 - 基本的 ReflectionReference::getId 用法
- Example#5085 - boolval examples
- Example#5086 - debug_zval_dump example
- Example#5087 -
- Example#5088 - 一个简单的 empty 与 isset 的比较。
- Example#5089 - 在字符串偏移量上使用empty
- Example#5090 - get_debug_type example
- Example#5091 - get_resource_id example
- Example#5092 - gettype 示例
- Example#5093 - intval 例子
- Example#5094 - is_bool 示例
- Example#5095 - is_callable 例子
- Example#5096 - is_countable examples
- Example#5097 - is_int 示例
- Example#5098 - is_iterable examples
- Example#5099 - is_numeric 示例
- Example#5100 - is_scalar 示例
- Example#5101 - isset 例子
- Example#5102 - 在字符串位移中使用 isset
- Example#5103 - print_r 例子
- Example#5104 - return 参数的例子
- Example#5105 - serialize 示例
- Example#5106 - settype 示例
- Example#5107 - unserialize 例子
- Example#5108 - unserialize_callback_func 例子
- Example#5109 - unset 示例
- Example#5110 - 使用 (unset) 类型强制转换
- Example#5111 - var_dump 例子
- Example#5112 - var_export 示例
- Example#5113 - 输出 stdClass 类 (自 PHP 7.3.0 起)
- Example#5114 - 输出对象 (自 PHP 5.1.0 起)
- Example#5115 - 使用 __set_state()
- Example#5116 -
- Example#5117 - OAuth::fetch example
- Example#5118 - OAuth::getAccessToken 例子
- Example#5119 - OAuth::getRequestToken 例子
- Example#5120 - OAuth::setRequestEngine 例子
- Example#5121 - 一个 OAuth::setRsaCertificate 例子
- Example#5122 - OAuth::setToken 例子
- Example#5123 - OAuthProvider::__construct 例子
- Example#5124 - OAuthProvider::consumerHandler 回调的例子
- Example#5125 - OAuthProvider::generateToken 例子
- Example#5126 - OAuthProvider::is2LeggedEndpoint 例子
- Example#5127 - OAuthProvider::timestampNonceHandler 回调的例子
- Example#5128 - OAuthProvider::tokenHandler 回调的例子
- Example#5129 - is_soap_fault example
- Example#5130 - SOAP's standard method for error reporting is exceptions
- Example#5131 - Specifying use of TLS 1.3 only
- Example#5132 - SoapClient::__construct example
- Example#5133 - Using the SOAP_SINGLE_ELEMENT_ARRAYS feature
- Example#5134 - SoapClient::__doRequest example
- Example#5135 - SoapClient::__getFunctions example
- Example#5136 - SoapClient::__getLastRequest() example
- Example#5137 - SoapClient::__getLastRequestHeaders() example
- Example#5138 - SoapClient::__getLastResponse() example
- Example#5139 - SoapClient::__getLastResponse() example
- Example#5140 - SoapClient::__getTypes example
- Example#5141 - SoapClient::__setLocation example
- Example#5142 - SoapClient::__setSoapHeaders example
- Example#5143 - Set Multiple Headers
- Example#5144 - SoapClient::__soapCall example
- Example#5145 - SoapServer::addFunction example
- Example#5146 - SoapServer::__construct example
- Example#5147 - SoapServer::getFunctions example
- Example#5148 - SoapServer::handle example
- Example#5149 - SoapServer::setPersistence example
- Example#5150 - Some examples
- Example#5151 - Some examples
- Example#5152 - SoapHeader::__construct example
- Example#5153 - SoapParam::__construct example
- Example#5154 - SoapVar::__construct example
- Example#5155 - Yar Server示例
- Example#5156 - 通过浏览器访问(GET请求)
- Example#5157 - Yar Client示例
- Example#5158 - Yar Concurrent Client示例
- Example#5159 - Yar_Server::__construct示例
- Example#5160 - Yar_Server::handle示例
- Example#5161 - Yar_Client::__call example
- Example#5162 - Yar_Client::__construct示例
- Example#5163 - Yar_Client::setOpt示例
- Example#5164 - Yar_Concurrent_Client::call示例
- Example#5165 - Yar_Concurrent_Client::loop example
- Example#5166 - Yar_Concurrent_Client::reset example
- Example#5167 - Yar_Server_Exception::getType示例
- Example#5168 - Yar_Client_Exception::getType example
- Example#5169 - XMLRPC client functions example
- Example#5170 - XML-RPC type example
- Example#5171 - A xmlrpc_set_type example
- Example#5172 - For Each in ASP
- Example#5173 - foreach in PHP
- Example#5174 - com example (1)
- Example#5175 - com example (2)
- Example#5176 - dotnet example
- Example#5177 - variant example
- Example#5178 - Basic COMPersistHelper::saveToFile Usage
- Example#5179 - COM event sink example
- Example#5180 - Registering a PHP script to run as a service
- Example#5181 - Unregistering a service
- Example#5182 - Running as a service
- Example#5183 - A win32_create_service example
- Example#5184 - A win32_create_service example with dependencies
- Example#5185 - A win32_create_service example with recovery
- Example#5186 - A win32_delete_service example
- Example#5187 - A win32_start_service_ctrl_dispatcher example
- Example#5188 - book.xml
- Example#5189 - Creating a new DOMAttr object
- Example#5190 - DOMAttr::isId() Example
- Example#5191 - Creating a new DOMCdataSection object
- Example#5192 - Creating a new DOMComment
- Example#5193 - Creating a new DOMDocument
- Example#5194 - Creating a new element and inserting it as root
- Example#5195 - Passing text containing an unescaped & as value
- Example#5196 - Creating a new element and inserting it as root
- Example#5197 - A namespace prefix example
- Example#5198 - DOMDocument::getElementById() Example
- Example#5199 - Basic Usage Example
- Example#5200 - Get all the XInclude elements
- Example#5201 - DOMDocument::importNode example
- Example#5202 - Creating a Document
- Example#5203 - Creating a Document
- Example#5204 - Creating a Document
- Example#5205 - Creating a Document
- Example#5206 - Static invocation of loadXML
- Example#5207 - Adding a new method to DOMElement to ease our code
- Example#5208 - Retrieving elements as custom class
- Example#5209 - Retrieving owner document
- Example#5210 - Custom objects are transient
- Example#5211 - Saving a DOM tree into a file
- Example#5212 - Saving a HTML tree into a string
- Example#5213 - Saving a HTML tree into a file
- Example#5214 - Saving a DOM tree into a string
- Example#5215 - Example of DTD validation
- Example#5216 - DOMDocument::xinclude() example
- Example#5217 - Appending XML data to your document
- Example#5218 - Creating a new DOMElement
- Example#5219 - Setting an attribute
- Example#5220 - Creating a new DOMEntityReference
- Example#5221 - Creating a document with an attached DTD
- Example#5222 - Testing your DOM Implementation
- Example#5223 - Adding a child
- Example#5224 - Nested children
- Example#5225 - DOMNode::getLineNo example
- Example#5226 - DOMNode::getNodePath example
- Example#5227 - Removing a child
- Example#5228 - Traversing all the entries of the table
- Example#5229 - Creating a new DOMProcessingInstruction object
- Example#5230 - Creating a new DOMText
- Example#5231 - Getting the count of all the english books
- Example#5232 - Getting all the english books
- Example#5233 - book.xml
- Example#5234 - DOMXPath::registerPHPFunctions with php:functionString
- Example#5235 - DOMXPath::registerPHPFunctions with php:function
- Example#5236 - Import SimpleXML into DOM with dom_import_simplexml
- Example#5237 - A libxml_get_errors example
- Example#5238 - libxml_set_external_entity_loader example
- Example#5239 - A libxml_set_streams_context example
- Example#5240 - A libxml_use_internal_errors example
- Example#5241 - Include file example.php with XML string
- Example#5242 - Getting <plot>
- Example#5243 - Getting <line>
- Example#5244 - Accessing non-unique elements in SimpleXML
- Example#5245 - Using attributes
- Example#5246 - Comparing Elements and Attributes with Text
- Example#5247 - Comparing Two Elements
- Example#5248 - Using XPath
- Example#5249 - Setting values
- Example#5250 - Adding elements and attributes
- Example#5251 - DOM Interoperability
- Example#5252 - Loading broken XML string
- Example#5253 - Add attributes and children to a SimpleXML element
- Example#5254 - Add attributes and children to a SimpleXML element
- Example#5255 - Get XML
- Example#5256 - Using asXML() on SimpleXMLElement::xpath results
- Example#5257 - Interpret an XML string
- Example#5258 - Traversing a children() pseudo-array
- Example#5259 - Using namespaces
- Example#5260 - Create a SimpleXMLElement object
- Example#5261 - Create a SimpleXMLElement object from a URL
- Example#5262 - Counting the number of children
- Example#5263 - Get document namespaces
- Example#5264 - Working with multiple namespaces
- Example#5265 - Get XML element names
- Example#5266 - Get document namespaces in use
- Example#5267 - Setting a namespace prefix to use in an XPath query
- Example#5268 - Get string content
- Example#5269 - Xpath
- Example#5270 - Return the current element
- Example#5271 - Return the sub-elements of the current element
- Example#5272 - Check whether the current element has sub-elements
- Example#5273 - Get the current XML tag key
- Example#5274 - Move to the next element
- Example#5275 - Rewind to the first element
- Example#5276 - Check whether the current element is valid
- Example#5277 - Importing DOM
- Example#5278 - Interpret an XML document
- Example#5279 - Interpret an XML string
- Example#5280 - Serializing a single value with WDDX
- Example#5281 - Using incremental packets with WDDX
- Example#5282 - wddx_serialize_vars example
- Example#5283 - 显示 XML 元素结构
- Example#5284 - 将 XML 映射为 HTML
- Example#5285 - 外部实体例程
- Example#5286 - xmltest.xml
- Example#5287 - xmltest2.xml
- Example#5288 - xml_parse_into_struct 示例
- Example#5289 - moldb.xml - 分子信息的小型数据库
- Example#5290 - parsemoldb.php - 将 moldb.xml 解析到分子(molecular)对象的数组中
- Example#5291 - xml_set_object 示例
- Example#5292 - Validating XML
- Example#5293 - Creating a simple XML document
- Example#5294 - Working with XML namespaces
- Example#5295 - Working with the OO API
- Example#5296 - Direct output of XML
- Example#5297 - XMLWriter::setIndent and mixed Content
- Example#5298 - Basic XMLWriter::startAttribute Usage
- Example#5299 - Intermixing Sub-elements and Attributes
- Example#5300 - Basic xmlwriter_write_cdata Usage
- Example#5301 - collection.xml
- Example#5302 - collection.xsl
- Example#5303 - fruits.xml
- Example#5304 - fruits.xsl
- Example#5305 - Collating and printing errors
- Example#5306 - Creating an XSLTProcessor
- Example#5307 - Testing EXSLT support
- Example#5308 - Simple PHP Function call from a stylesheet
- Example#5309 - Changing the owner before the transformation
- Example#5310 - Example profiling output
- Example#5311 - Transforming to a DOMDocument
- Example#5312 - Transforming to a HTML file
- Example#5313 - Transforming to a string
- Example#5314 - 隐藏的 HTML 表单单元
- Example#5315 - 等待用户编辑的数据
- Example#5316 - URL 中的例子
- Example#5317 - Activate full on-screen error reporting for dev. domain
- Example#5318 - Add security script for protected areas
- Example#5319 - Unix include_path
- Example#5320 - Windows include_path
- Example#5321 - Unix include_path using ${USER} env variable
- Example#5322 - string.rot13
- Example#5323 - string.toupper
- Example#5324 - string.tolower
- Example#5325 - string.strip_tags
- Example#5326 - convert.base64-encode & convert.base64-decode
- Example#5327 - convert.quoted-printable-encode & convert.quoted-printable-decode
- Example#5328 - convert.iconv.*
- Example#5329 - zlib.deflate 和
zlib.inflate
- Example#5330 - zlib.deflate 简单参数用法
- Example#5331 - bzip2.compress 和
bzip2.decompress
- Example#5332 - 用 Blowfish 算法加解密
- Example#5333 - 将文件以 SHA256 HMAC 的 AES-128 CBC 加密