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