PHP7高效的数据结构,可以作为[array](https://www.php.net/manual/zh/language.types.array.php)的替代.
[https://pecl.php.net/package/ds](https://pecl.php.net/package/ds)
* [预定义常量](https://www.php.net/manual/en/ds.constants.php)
* [例子](https://www.php.net/manual/en/ds.examples.php)
* [集合](https://www.php.net/manual/en/class.ds-collection.php)—集合界面
* [Ds \\ Collection :: clear](https://www.php.net/manual/en/ds-collection.clear.php)—删除所有值
* [Ds \\ Collection :: copy](https://www.php.net/manual/en/ds-collection.copy.php)—返回集合的浅表副本
* [Ds \\ Collection :: isEmpty](https://www.php.net/manual/en/ds-collection.isempty.php)—返回集合是否为空
* [Ds \\ Collection :: toArray](https://www.php.net/manual/en/ds-collection.toarray.php)—将集合转换为数组
* [Hashable](https://www.php.net/manual/en/class.ds-hashable.php)— Hashable界面
* [Ds \\ Hashable :: equals](https://www.php.net/manual/en/ds-hashable.equals.php)—确定对象是否等于当前实例
* [Ds \\ Hashable :: hash](https://www.php.net/manual/en/ds-hashable.hash.php)—返回要用作哈希值的标量值
* [序列](https://www.php.net/manual/en/class.ds-sequence.php)\-序列接口
* [Ds \\ Sequence :: allocate](https://www.php.net/manual/en/ds-sequence.allocate.php)—为所需容量分配足够的内存
* [Ds \\ Sequence ::](https://www.php.net/manual/en/ds-sequence.apply.php)apply-通过对每个值应用回调函数来更新所有值
* [Ds \\ Sequence :: capacity](https://www.php.net/manual/en/ds-sequence.capacity.php)—返回当前容量
* [Ds \\ Sequence :: contains](https://www.php.net/manual/en/ds-sequence.contains.php)—确定序列是否包含给定值
* [Ds \\ Sequence :: filter](https://www.php.net/manual/en/ds-sequence.filter.php)—使用可调用对象来确定要包含的值来创建新序列
* [Ds \\ Sequence :: find](https://www.php.net/manual/en/ds-sequence.find.php)—尝试查找值的索引
* [Ds \\ Sequence :: first](https://www.php.net/manual/en/ds-sequence.first.php)—返回[序列](https://www.php.net/manual/en/ds-sequence.first.php)中的第一个值
* [Ds \\ Sequence :: get](https://www.php.net/manual/en/ds-sequence.get.php)—返回给定索引处的值
* [Ds \\ Sequence ::](https://www.php.net/manual/en/ds-sequence.insert.php)insert-在给定索引处插入值
* [Ds \\ Sequence ::](https://www.php.net/manual/en/ds-sequence.join.php)join-将所有值作为字符串连接在一起
* [Ds \\ Sequence :: last-](https://www.php.net/manual/en/ds-sequence.last.php)返回最后一个值
* [Ds \\ Sequence :: map](https://www.php.net/manual/en/ds-sequence.map.php)—返回对每个值应用回调的结果
* [Ds \\ Sequence :: merge](https://www.php.net/manual/en/ds-sequence.merge.php)—返回将所有给定值添加到序列中的结果
* [Ds \\ Sequence :: pop](https://www.php.net/manual/en/ds-sequence.pop.php)—删除并返回最后一个值
* [Ds \\ Sequence :: push-](https://www.php.net/manual/en/ds-sequence.push.php)将值添加到序列的末尾
* [Ds \\ Sequence :: reduce](https://www.php.net/manual/en/ds-sequence.reduce.php)—使用回调函数将序列减少为单个值
* [Ds \\ Sequence ::](https://www.php.net/manual/en/ds-sequence.remove.php)remove-按索引删除并返回一个值
* [Ds \\ Sequence :: reverse](https://www.php.net/manual/en/ds-sequence.reverse.php)—就地反转序列
* [Ds \\ Sequence :: reversed](https://www.php.net/manual/en/ds-sequence.reversed.php)—返回反向副本
* [Ds \\ Sequence :: rotate](https://www.php.net/manual/en/ds-sequence.rotate.php)—将序列旋转给定的转数
* [Ds \\ Sequence :: set-](https://www.php.net/manual/en/ds-sequence.set.php)更新给定索引处的值
* [Ds \\ Sequence :: shift](https://www.php.net/manual/en/ds-sequence.shift.php)—删除并返回第一个值
* [Ds \\ Sequence :: slice](https://www.php.net/manual/en/ds-sequence.slice.php)—返回给定范围的子序列
* [Ds \\ Sequence ::](https://www.php.net/manual/en/ds-sequence.sort.php)sort-就地排序序列
* [Ds \\ Sequence :: sorted](https://www.php.net/manual/en/ds-sequence.sorted.php)—返回已排序的副本
* [Ds \\ Sequence :: sum](https://www.php.net/manual/en/ds-sequence.sum.php)—返回[序列](https://www.php.net/manual/en/ds-sequence.sum.php)中所有值的总和
* [Ds \\ Sequence :: unshift-](https://www.php.net/manual/en/ds-sequence.unshift.php)将值添加到序列的前面
* [向量](https://www.php.net/manual/en/class.ds-vector.php)— Vector类
* [Ds \\ Vector :: allocate](https://www.php.net/manual/en/ds-vector.allocate.php)—为所需容量分配足够的内存
* [Ds \\ Vector ::](https://www.php.net/manual/en/ds-vector.apply.php)apply-通过将回调函数应用于每个值来更新所有值
* [Ds \\ Vector :: capacity](https://www.php.net/manual/en/ds-vector.capacity.php)—返回当前容量
* [Ds \\ Vector ::](https://www.php.net/manual/en/ds-vector.clear.php)clear-删除所有值
* [Ds \\ Vector :: \_\_ construct](https://www.php.net/manual/en/ds-vector.construct.php)—创建一个新实例
* [Ds \\ Vector :: contains](https://www.php.net/manual/en/ds-vector.contains.php)—确定向量是否包含给定值
* [Ds \\ Vector :: copy](https://www.php.net/manual/en/ds-vector.copy.php)—返回[向量](https://www.php.net/manual/en/ds-vector.copy.php)的浅表副本
* [Ds \\ Vector :: count](https://www.php.net/manual/en/ds-vector.count.php)—返回集合中值的数量
* [Ds \\ Vector :: filter](https://www.php.net/manual/en/ds-vector.filter.php)—使用可调用对象来确定要包含的值来创建新的向量
* [Ds \\ Vector :: find](https://www.php.net/manual/en/ds-vector.find.php)—尝试查找值的索引
* [Ds \\ Vector :: first](https://www.php.net/manual/en/ds-vector.first.php)—返回[向量](https://www.php.net/manual/en/ds-vector.first.php)中的第一个值
* [Ds \\ Vector :: get](https://www.php.net/manual/en/ds-vector.get.php)—返回给定索引处的值
* [Ds \\ Vector :: insert](https://www.php.net/manual/en/ds-vector.insert.php)—在给定索引处插入值
* [Ds \\ Vector :: isEmpty](https://www.php.net/manual/en/ds-vector.isempty.php)—返回向量是否为空
* [Ds \\ Vector :: join](https://www.php.net/manual/en/ds-vector.join.php)—将所有值作为字符串连接在一起
* [Ds \\ Vector :: jsonSerialize](https://www.php.net/manual/en/ds-vector.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Vector :: last](https://www.php.net/manual/en/ds-vector.last.php)—返回最后一个值
* [Ds \\ Vector :: map](https://www.php.net/manual/en/ds-vector.map.php)—返回对每个值应用回调的结果
* [Ds \\ Vector :: merge](https://www.php.net/manual/en/ds-vector.merge.php)—返回将所有给定值添加到向量的结果
* [Ds \\ Vector :: pop](https://www.php.net/manual/en/ds-vector.pop.php)—删除并返回最后一个值
* [Ds \\ Vector :: push](https://www.php.net/manual/en/ds-vector.push.php)—将值添加到向量的末尾
* [Ds \\ Vector :: reduce](https://www.php.net/manual/en/ds-vector.reduce.php)—使用回调函数将向量减小为单个值
* [Ds \\ Vector :: remove](https://www.php.net/manual/en/ds-vector.remove.php)—按索引删除并返回一个值
* [Ds \\ Vector :: reverse](https://www.php.net/manual/en/ds-vector.reverse.php)—就地反转向量
* [Ds \\ Vector :: reversed](https://www.php.net/manual/en/ds-vector.reversed.php)—返回反向副本
* [Ds \\ Vector :: rotate](https://www.php.net/manual/en/ds-vector.rotate.php)—将向量旋转给定的旋转数
* [Ds \\ Vector :: set](https://www.php.net/manual/en/ds-vector.set.php)—更新给定索引处的值
* [Ds \\ Vector :: shift](https://www.php.net/manual/en/ds-vector.shift.php)—删除并返回第一个值
* [Ds \\ Vector :: slice](https://www.php.net/manual/en/ds-vector.slice.php)—返回给定范围的子向量
* [Ds \\ Vector :: sort](https://www.php.net/manual/en/ds-vector.sort.php)—对向量进行原位排序
* [Ds \\ Vector :: sorted](https://www.php.net/manual/en/ds-vector.sorted.php)—返回排序后的副本
* [Ds \\ Vector :: sum](https://www.php.net/manual/en/ds-vector.sum.php)—返回[向量](https://www.php.net/manual/en/ds-vector.sum.php)中所有值的总和
* [Ds \\ Vector :: toArray](https://www.php.net/manual/en/ds-vector.toarray.php)—将向量转换为数组
* [Ds \\ Vector :: unshift](https://www.php.net/manual/en/ds-vector.unshift.php)—将值添加到向量的前面
* [Deque](https://www.php.net/manual/en/class.ds-deque.php)\-Deque类
* [Ds \\ Deque :: allocate](https://www.php.net/manual/en/ds-deque.allocate.php)—为所需容量分配足够的内存
* [Ds \\ Deque :: apply-](https://www.php.net/manual/en/ds-deque.apply.php)通过对每个值应用回调函数来更新所有值
* [Ds \\ Deque :: capacity](https://www.php.net/manual/en/ds-deque.capacity.php)—返回当前容量
* [Ds \\ Deque :: clear](https://www.php.net/manual/en/ds-deque.clear.php)—从双端队列中删除所有值
* [Ds \\ Deque :: \_\_ construct](https://www.php.net/manual/en/ds-deque.construct.php)—创建一个新实例
* [Ds \\ Deque :: contains](https://www.php.net/manual/en/ds-deque.contains.php)—确定双端队列是否包含给定值
* [Ds \\ Deque :: copy](https://www.php.net/manual/en/ds-deque.copy.php)—返回双端队列的浅表副本
* [Ds \\ Deque :: count](https://www.php.net/manual/en/ds-deque.count.php)—返回集合中值的数量
* [Ds \\ Deque :: filter](https://www.php.net/manual/en/ds-deque.filter.php)—使用可调用对象来确定要包括哪些值来创建新的双端队列
* [Ds \\ Deque :: find](https://www.php.net/manual/en/ds-deque.find.php)—尝试查找值的索引
* [Ds \\ Deque :: first](https://www.php.net/manual/en/ds-deque.first.php)—返回双端队列中的第一个值
* [Ds \\ Deque :: get](https://www.php.net/manual/en/ds-deque.get.php)—返回给定索引处的值
* [Ds \\ Deque ::](https://www.php.net/manual/en/ds-deque.insert.php)insert-在给定索引处插入值
* [Ds \\ Deque :: isEmpty](https://www.php.net/manual/en/ds-deque.isempty.php)—返回双端队列是否为空
* [Ds \\ Deque ::](https://www.php.net/manual/en/ds-deque.join.php)join-将所有值作为字符串连接在一起
* [Ds \\ Deque :: jsonSerialize](https://www.php.net/manual/en/ds-deque.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Deque :: last-](https://www.php.net/manual/en/ds-deque.last.php)返回最后一个值
* [Ds \\ Deque :: map](https://www.php.net/manual/en/ds-deque.map.php)—返回对每个值应用回调的结果
* [Ds \\ Deque :: merge](https://www.php.net/manual/en/ds-deque.merge.php)—返回将所有给定值添加到双端队列的结果
* [Ds \\ Deque :: pop](https://www.php.net/manual/en/ds-deque.pop.php)—删除并返回最后一个值
* [Ds \\ Deque :: push-](https://www.php.net/manual/en/ds-deque.push.php)将值添加到双端队列的末尾
* [Ds \\ Deque :: reduce](https://www.php.net/manual/en/ds-deque.reduce.php)—使用回调函数将双端队列减小为单个值
* [Ds \\ Deque :: remove](https://www.php.net/manual/en/ds-deque.remove.php)—按索引删除并返回一个值
* [Ds \\ Deque :: reverse](https://www.php.net/manual/en/ds-deque.reverse.php)—在原位反转双端队列
* [Ds \\ Deque :: reversed](https://www.php.net/manual/en/ds-deque.reversed.php)—返回反向副本
* [Ds \\ Deque :: rotate](https://www.php.net/manual/en/ds-deque.rotate.php)—将双端队列旋转给定的转数
* [Ds \\ Deque :: set-](https://www.php.net/manual/en/ds-deque.set.php)更新给定索引处的值
* [Ds \\ Deque :: shift](https://www.php.net/manual/en/ds-deque.shift.php)—删除并返回第一个值
* [Ds \\ Deque :: slice](https://www.php.net/manual/en/ds-deque.slice.php)—返回给定范围的子双端队列
* [Ds \\ Deque :: sort](https://www.php.net/manual/en/ds-deque.sort.php)—对就地双端队列进行排序
* [Ds \\ Deque :: sorted](https://www.php.net/manual/en/ds-deque.sorted.php)—返回已排序的副本
* [Ds \\ Deque :: sum](https://www.php.net/manual/en/ds-deque.sum.php)—返回双端队列中所有值的总和
* [Ds \\ Deque :: toArray](https://www.php.net/manual/en/ds-deque.toarray.php)—将双端队列转换为数组
* [Ds \\ Deque :: unshift](https://www.php.net/manual/en/ds-deque.unshift.php)—将值添加到双端队列的前面
* [Map](https://www.php.net/manual/en/class.ds-map.php)— Map类
* [Ds \\ Map :: allocate](https://www.php.net/manual/en/ds-map.allocate.php)—为所需容量分配足够的内存
* [Ds \\ Map ::](https://www.php.net/manual/en/ds-map.apply.php)apply-通过将回调函数应用于每个值来更新所有值
* [Ds \\ Map :: capacity](https://www.php.net/manual/en/ds-map.capacity.php)—返回当前容量
* [Ds \\ Map ::](https://www.php.net/manual/en/ds-map.clear.php)clear-删除所有值
* [Ds \\ Map :: \_\_ construct](https://www.php.net/manual/en/ds-map.construct.php)—创建一个新实例
* [Ds \\ Map :: copy](https://www.php.net/manual/en/ds-map.copy.php)—返回[地图](https://www.php.net/manual/en/ds-map.copy.php)的浅表副本
* [Ds \\ Map :: count](https://www.php.net/manual/en/ds-map.count.php)—返回映射中的值数
* [Ds \\ Map :: diff](https://www.php.net/manual/en/ds-map.diff.php)—使用不在另一个地图中的键创建一个新地图
* [Ds \\ Map :: filter](https://www.php.net/manual/en/ds-map.filter.php)—使用可调用对象来确定要包括哪些对的新地图
* [Ds \\ Map :: first](https://www.php.net/manual/en/ds-map.first.php)—返回[地图](https://www.php.net/manual/en/ds-map.first.php)中的第一对
* [Ds \\ Map :: get](https://www.php.net/manual/en/ds-map.get.php)—返回给定键的值
* [Ds \\ Map :: hasKey](https://www.php.net/manual/en/ds-map.haskey.php)—确定地图是否包含给定的键
* [Ds \\ Map :: hasValue](https://www.php.net/manual/en/ds-map.hasvalue.php)—确定地图是否包含给定值
* [Ds \\ Map :: intersect](https://www.php.net/manual/en/ds-map.intersect.php)—通过将关键点与另一个地图[相交来](https://www.php.net/manual/en/ds-map.intersect.php)创建新地图
* [Ds \\ Map :: isEmpty](https://www.php.net/manual/en/ds-map.isempty.php)—返回映射是否为空
* [Ds \\ Map :: jsonSerialize](https://www.php.net/manual/en/ds-map.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Map :: keys-](https://www.php.net/manual/en/ds-map.keys.php)返回一组地图键
* [Ds \\ Map :: ksort-](https://www.php.net/manual/en/ds-map.ksort.php)按键对地图进行排序
* [Ds \\ Map :: ksorted](https://www.php.net/manual/en/ds-map.ksorted.php)—返回一个副本,按键排序
* [Ds \\ Map :: last-](https://www.php.net/manual/en/ds-map.last.php)返回[地图](https://www.php.net/manual/en/ds-map.last.php)的最后一对
* [Ds \\ Map :: map](https://www.php.net/manual/en/ds-map.map.php)—返回对每个值应用回调的结果
* [Ds \\ Map :: merge](https://www.php.net/manual/en/ds-map.merge.php)—返回添加所有给定关联的结果
* [Ds \\ Map :: pairs](https://www.php.net/manual/en/ds-map.pairs.php)—返回包含映射的所有对的序列
* [Ds \\ Map :: put-将](https://www.php.net/manual/en/ds-map.put.php)键与值关联
* [Ds \\ Map :: putAll](https://www.php.net/manual/en/ds-map.putall.php)—将可遍历对象或数组的所有键值对关联
* [Ds \\ Map :: reduce](https://www.php.net/manual/en/ds-map.reduce.php)—使用回调函数将地图缩小为单个值
* [Ds \\ Map :: remove](https://www.php.net/manual/en/ds-map.remove.php)—按键删除并返回一个值
* [Ds \\ Map :: reverse](https://www.php.net/manual/en/ds-map.reverse.php)—在原地反转地图
* [Ds \\ Map :: reversed](https://www.php.net/manual/en/ds-map.reversed.php)—返回反向副本
* [Ds \\ Map :: skip](https://www.php.net/manual/en/ds-map.skip.php)—返回给定位置索引处的对
* [Ds \\ Map :: slice](https://www.php.net/manual/en/ds-map.slice.php)—返回由起始索引和长度定义的映射的子集
* [Ds \\ Map :: sort](https://www.php.net/manual/en/ds-map.sort.php)—按值对地图进行排序
* [Ds \\ Map :: sorted](https://www.php.net/manual/en/ds-map.sorted.php)—返回一个副本,按值排序
* [Ds \\ Map :: sum](https://www.php.net/manual/en/ds-map.sum.php)—返回映射中所有值的总和
* [Ds \\ Map :: toArray](https://www.php.net/manual/en/ds-map.toarray.php)—将地图转换为数组
* [Ds \\ Map :: union](https://www.php.net/manual/en/ds-map.union.php)—使用当前实例和另一个映射中的值创建一个新映射
* [Ds \\ Map :: values](https://www.php.net/manual/en/ds-map.values.php)—返回[地图值](https://www.php.net/manual/en/ds-map.values.php)的序列
* [Ds \\ Map :: xor](https://www.php.net/manual/en/ds-map.xor.php)—使用当前实例或另一个映射的键创建一个新映射,但不能同时使用两者
* [配对](https://www.php.net/manual/en/class.ds-pair.php)—配对类
* [Ds \\ Pair ::](https://www.php.net/manual/en/ds-pair.clear.php)clear-删除所有值
* [Ds \\ Pair :: \_\_ construct](https://www.php.net/manual/en/ds-pair.construct.php)—创建一个新实例
* [Ds \\ Pair :: copy](https://www.php.net/manual/en/ds-pair.copy.php)—返回该对的浅表副本
* [Ds \\ Pair :: isEmpty](https://www.php.net/manual/en/ds-pair.isempty.php)—返回该对是否为空
* [Ds \\ Pair :: jsonSerialize](https://www.php.net/manual/en/ds-pair.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Pair :: toArray](https://www.php.net/manual/en/ds-pair.toarray.php)—将对转换为数组
* [Set](https://www.php.net/manual/en/class.ds-set.php)— Set类
* [Ds \\ Set ::](https://www.php.net/manual/en/ds-set.add.php)add-将值添加到集合中
* [Ds \\ Set :: allocate](https://www.php.net/manual/en/ds-set.allocate.php)—为所需容量分配足够的内存
* [Ds \\ Set :: capacity](https://www.php.net/manual/en/ds-set.capacity.php)—返回当前容量
* [Ds \\ Set ::](https://www.php.net/manual/en/ds-set.clear.php)clear-删除所有值
* [Ds \\ Set :: \_\_ construct](https://www.php.net/manual/en/ds-set.construct.php)—创建一个新实例
* [Ds \\ Set :: contains](https://www.php.net/manual/en/ds-set.contains.php)—确定该集合是否包含所有值
* [Ds \\ Set :: copy](https://www.php.net/manual/en/ds-set.copy.php)—返回集合的浅表副本
* [Ds \\ Set :: count](https://www.php.net/manual/en/ds-set.count.php)—返回集合中值的数量
* [Ds \\ Set :: diff](https://www.php.net/manual/en/ds-set.diff.php)—使用另一个集合中没有的值创建一个新集合
* [Ds \\ Set :: filter](https://www.php.net/manual/en/ds-set.filter.php)—使用可调用对象来确定要包括哪些值来创建一个新集合
* [Ds \\ Set :: first](https://www.php.net/manual/en/ds-set.first.php)—返回[集合](https://www.php.net/manual/en/ds-set.first.php)中的第一个值
* [Ds \\ Set :: get](https://www.php.net/manual/en/ds-set.get.php)—返回给定索引处的值
* [Ds \\ Set :: intersect-](https://www.php.net/manual/en/ds-set.intersect.php)通过将值与另一个集合[相交来](https://www.php.net/manual/en/ds-set.intersect.php)创建一个新集合
* [Ds \\ Set :: isEmpty](https://www.php.net/manual/en/ds-set.isempty.php)—返回集合是否为空
* [Ds \\ Set :: join](https://www.php.net/manual/en/ds-set.join.php)—将所有值作为字符串连接在一起
* [Ds \\ Set :: jsonSerialize](https://www.php.net/manual/en/ds-set.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Set :: last](https://www.php.net/manual/en/ds-set.last.php)—返回[集合](https://www.php.net/manual/en/ds-set.last.php)中的最后一个值
* [Ds \\ Set :: merge](https://www.php.net/manual/en/ds-set.merge.php)—返回将所有给定值添加到集合中的结果
* [Ds \\ Set :: reduce](https://www.php.net/manual/en/ds-set.reduce.php)—使用回调函数将集合减少为单个值
* [Ds \\ Set :: remove](https://www.php.net/manual/en/ds-set.remove.php)—从集合中删除所有给定的值
* [Ds \\ Set :: reverse](https://www.php.net/manual/en/ds-set.reverse.php)—反转设置
* [Ds \\ Set :: reversed](https://www.php.net/manual/en/ds-set.reversed.php)—返回反向副本
* [Ds \\ Set :: slice](https://www.php.net/manual/en/ds-set.slice.php)—返回给定范围的子集
* [Ds \\ Set ::](https://www.php.net/manual/en/ds-set.sort.php)sort-对集合进行就地排序
* [Ds \\ Set :: sorted](https://www.php.net/manual/en/ds-set.sorted.php)—返回排序后的副本
* [Ds \\ Set :: sum](https://www.php.net/manual/en/ds-set.sum.php)—返回集合中所有值的总和
* [Ds \\ Set :: toArray](https://www.php.net/manual/en/ds-set.toarray.php)—将集合转换为数组
* [Ds \\ Set :: union](https://www.php.net/manual/en/ds-set.union.php)—使用当前实例和另一个集合中的值创建一个新集合
* [Ds \\ Set :: xor](https://www.php.net/manual/en/ds-set.xor.php)—使用当前实例或另一个集中的值创建一个新集合,但不要同时使用这两个值
* [堆栈](https://www.php.net/manual/en/class.ds-stack.php)—堆栈类
* [Ds \\ Stack :: allocate](https://www.php.net/manual/en/ds-stack.allocate.php)—为所需容量分配足够的内存
* [Ds \\ Stack :: capacity](https://www.php.net/manual/en/ds-stack.capacity.php)—返回当前容量
* [Ds \\ Stack ::](https://www.php.net/manual/en/ds-stack.clear.php)clear-删除所有值
* [Ds \\ Stack :: \_\_ construct](https://www.php.net/manual/en/ds-stack.construct.php)—创建一个新实例
* [Ds \\ Stack :: copy](https://www.php.net/manual/en/ds-stack.copy.php)—返回[堆栈](https://www.php.net/manual/en/ds-stack.copy.php)的浅表副本
* [Ds \\ Stack :: count](https://www.php.net/manual/en/ds-stack.count.php)—返回堆栈中的值数
* [Ds \\ Stack :: isEmpty](https://www.php.net/manual/en/ds-stack.isempty.php)—返回堆栈是否为空
* [Ds \\ Stack :: jsonSerialize](https://www.php.net/manual/en/ds-stack.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Stack :: peek-](https://www.php.net/manual/en/ds-stack.peek.php)返回堆栈顶部的值
* [Ds \\ Stack :: pop](https://www.php.net/manual/en/ds-stack.pop.php)—删除并返回[栈顶](https://www.php.net/manual/en/ds-stack.pop.php)的值
* [Ds \\ Stack :: push](https://www.php.net/manual/en/ds-stack.push.php)—将值[压入](https://www.php.net/manual/en/ds-stack.push.php)堆栈
* [Ds \\ Stack :: toArray](https://www.php.net/manual/en/ds-stack.toarray.php)—将堆栈转换为数组
* [Queue](https://www.php.net/manual/en/class.ds-queue.php)—队列类
* [Ds \\ Queue :: allocate](https://www.php.net/manual/en/ds-queue.allocate.php)—为所需的容量分配足够的内存
* [Ds \\ Queue :: capacity](https://www.php.net/manual/en/ds-queue.capacity.php)—返回当前容量
* [Ds \\ Queue ::](https://www.php.net/manual/en/ds-queue.clear.php)clear-删除所有值
* [Ds \\ Queue :: \_\_ construct](https://www.php.net/manual/en/ds-queue.construct.php)—创建一个新实例
* [Ds \\ Queue :: copy](https://www.php.net/manual/en/ds-queue.copy.php)—返回[队列](https://www.php.net/manual/en/ds-queue.copy.php)的浅表副本
* [Ds \\ Queue :: count](https://www.php.net/manual/en/ds-queue.count.php)—返回队列中的值数
* [Ds \\ Queue :: isEmpty](https://www.php.net/manual/en/ds-queue.isempty.php)—返回队列是否为空
* [Ds \\ Queue :: jsonSerialize](https://www.php.net/manual/en/ds-queue.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ Queue :: peek-](https://www.php.net/manual/en/ds-queue.peek.php)返回[队列开头](https://www.php.net/manual/en/ds-queue.peek.php)的值
* [Ds \\ Queue :: pop](https://www.php.net/manual/en/ds-queue.pop.php)—删除并返回[队列](https://www.php.net/manual/en/ds-queue.pop.php)开头的值
* [Ds \\ Queue ::](https://www.php.net/manual/en/ds-queue.push.php)push-将值推入队列
* [Ds \\ Queue :: toArray](https://www.php.net/manual/en/ds-queue.toarray.php)—将队列转换为数组
* [PriorityQueue](https://www.php.net/manual/en/class.ds-priorityqueue.php)— PriorityQueue类
* [Ds \\ PriorityQueue :: allocate](https://www.php.net/manual/en/ds-priorityqueue.allocate.php)—为所需容量分配足够的内存
* [Ds \\ PriorityQueue :: capacity](https://www.php.net/manual/en/ds-priorityqueue.capacity.php)—返回当前容量
* [Ds \\ PriorityQueue ::](https://www.php.net/manual/en/ds-priorityqueue.clear.php)clear-删除所有值
* [Ds \\ PriorityQueue :: \_\_ construct](https://www.php.net/manual/en/ds-priorityqueue.construct.php)—创建一个新实例
* [Ds \\ PriorityQueue :: copy](https://www.php.net/manual/en/ds-priorityqueue.copy.php)—返回队列的浅表副本
* [Ds \\ PriorityQueue :: count](https://www.php.net/manual/en/ds-priorityqueue.count.php)—返回队列中的值数
* [Ds \\ PriorityQueue :: isEmpty](https://www.php.net/manual/en/ds-priorityqueue.isempty.php)—返回队列是否为空
* [Ds \\ PriorityQueue :: jsonSerialize](https://www.php.net/manual/en/ds-priorityqueue.jsonserialize.php)—返回可以转换为JSON的表示形式
* [Ds \\ PriorityQueue :: peek-](https://www.php.net/manual/en/ds-priorityqueue.peek.php)返回队列[开头](https://www.php.net/manual/en/ds-priorityqueue.peek.php)的值
* [Ds \\ PriorityQueue :: pop](https://www.php.net/manual/en/ds-priorityqueue.pop.php)—删除并返回优先级最高的值
* [Ds \\ PriorityQueue ::](https://www.php.net/manual/en/ds-priorityqueue.push.php)push-将值推入队列
* [Ds \\ PriorityQueue :: toArray](https://www.php.net/manual/en/ds-priorityqueue.toarray.php)—将队列转换为数组
- php更新内容
- PHP PSR 标准规范
- 辅助查询(*)
- composer项目的创建
- composer安装及设置
- composer自动加载讲解
- phpsdudy的composer操作
- git
- Git代码同时上传到GitHub和Gitee(码云)
- Git - 多人协同开发利器,团队协作流程规范与注意事项
- 删除远程仓库的文件
- github查询方法
- 错误
- 其他
- php.ini
- php配置可修改范围
- php超时
- 防跨目录设置
- 函数可变参数
- 【时间】操作
- 时间函数例子
- Date/Time 函数(不包含别名函数)
- DateTime类别名函数
- 【数字】操作
- 【字符串】操作
- 【数组】操作
- 排序
- 合并案例
- empty、isset、is_null
- echo 输出bool值
- if真假情况
- 流程控制代替语法【if (条件): endif;】
- 三元运算
- 运算符优先级
- 常量
- define与const(php5.3) 类常量
- 递归
- 单元测试
- 面向对象
- 对象(object) 与 数组(array) 的转换
- php网络相关
- 支持的协议和封装协议(如http,php://input)
- php://协议
- file://协议
- http(s)://协议
- ftp(s)://协议
- zip://, bzip2://, zlib://协议
- data://协议
- glob://协议
- expect://协议
- phar://
- ssh2
- rar://
- ogg://
- 上下文(Context)选项和参数
- 过滤器
- http请求及模拟登录
- 常用的header头部定义汇总
- HTTP响应头和请求头信息对照表
- HTTP请求的返回值含义说明
- content-type对照表
- Cache-Control对照
- curl函数
- 防止页面刷新
- telnet模拟get、post请求
- 三种方式模拟表单发布留言
- 模拟登陆
- 防盗链
- php+mysql模拟队列发送邮件
- socket
- 使用websocket实现php消息实时推送完整示例
- streams
- Stream函数实现websocket
- swoole
- 网络编程基本概念
- 全局变量域超全局变量
- 超全局变量
- $_ENV :存储了一些系统的环境变量
- $_COOKIE
- $_SESSION
- $_FILES
- $_SERVER
- 正则
- php正则函数
- 去除文本中的html、xml的标签
- 特殊符号
- \r\n
- 模式修正符
- 分组
- 断言(环视?)
- 条件表达式
- 递归表达式 (?R)
- 固化分组
- 正则例子
- 提取类文件的公共方法
- 抓取网页内容
- 匹配中文字符
- 提取sql日志文件
- 框架
- 文件操作
- 自动加载spl_autoload_register
- 文件加载
- 文件的上传下载
- 常见的mimi类型
- 文件断点续传
- 下载文件防盗链
- 破解防盗链
- 将字节转为人可读的单位
- 无限分类
- 短信验证码
- 短信宝
- 视频分段加载
- 隐藏地址
- MPEG DASH视频分片技术
- phpDoc注释
- @错误抑制符
- 字符编码
- PHP CLI模式开发
- CGI、FastCGI和PHP-FPM关系图解
- No input file specified的解决方法
- SAPI(PHP常见的四种运行模式)
- assert断言
- 轮询(Event Loop)
- 异常处理
- 异常分类
- php系统异常
- 错误级别
- set_error_handler
- set_exception_handler
- register_shutdown_function
- try catch
- tp5异常处理类解析
- 文件上传相关设置
- 进程/线程/协程
- 协程
- 什么是协程
- 引用&
- Heredoc和Nowdoc语法
- 类基础
- 系统预定义类
- pdo
- 类的三大特性:封装,继承,多态
- 魔术方法
- extends继承
- abstract 抽象类
- interface 接口(需要implements实现)
- 抽象类和接口的区别
- 多态
- static
- final
- serialize与unserialize
- instanceof 判断后代子类
- 类型约束
- clone克隆
- ::的用法
- static::class、self::class
- new self()与new static()
- this、self、static、parent、super
- self、static、parent:后期静态绑定
- PHP的静态变量
- php导入
- trait
- 动态调用类方法
- 参数及类型申明
- 方法的重载覆盖
- return $a && $b
- 类型声明
- 设计思想
- 依赖注入与依赖倒置
- MVC模式与模板引擎
- 模版引擎
- smarty模版
- 系统变量、全局变量
- 语言切换
- 函数-给函数默认值
- 流程控制-遍历
- 模版加载
- 模版继承
- blade
- twig
- Plates
- 创建型模式(创建类对象)--单原二厂建
- (*)单例模式(保证一个类仅有一个实例)
- (*)工厂模式(自动实例化想要的类)
- 原型模式(在指定方法里克隆this)
- 创建者模式(建造者类组装近似类属性)
- 结构型模式 --桥(帮)组享外带装适
- 适配器模式(Adapter 用于接口兼容)
- 桥接模式(方法相同的不同类之间的快速切换)
- 装饰模式(动态增加类对象的功能 如游戏角色的装备)
- 组合模式(用于生成类似DOMDocument这种节点类)
- 外观模式(门面(Facade)模式 不同类的统一调用)
- 享元模式
- 代理模式
- 行为型模式--观摩职命状-备爹在房中洁厕
- (*)观察者模式
- (*)迭代器模式(Iterator)
- 模板方法模式 Template
- 命令模式(Command)
- 中介者模式(Mediator)
- 状态模式(State)
- 职责链模式 (Chainof Responsibility)
- 策略模式(Strategy)
- 已知模式-备忘录模式(Memento)
- 深度模式-解释器模式(Interpreter)
- 深度模式-访问者模式(Visitor)
- (*)注册树(注射器、注册表)模式
- PHP扩展库列表
- 函数参考
- 影响 PHP 行为的扩展
- APC扩展(过时)
- APCu扩展
- APD扩展(过时)
- bcompiler扩展(过时)
- BLENC扩展 (代码加密 实验型)
- Componere扩展(7.1+)
- Componere\Definition
- Componere\Patch
- Componere \ Method
- Componere\Value
- Componere函数
- 错误处理扩展(PHP 核心)
- FFI扩展
- 基本FFI用法
- FFI api
- htscanner扩展
- inclued扩展
- Memtrack扩展
- OPcache扩展(5.5.0内部集成)
- Output Control扩展(核心)
- PHP Options/Info扩展(核心)
- 选项、 信息函数
- phpdbg扩展(5.6+内部集成)
- runkit扩展
- runkit7扩展
- scream扩展
- uopz扩展
- Weakref扩展
- WeakRef
- WeakMap
- WinCache扩展
- Xhprof扩展
- Yac(7.0+)
- 音频格式操作
- ID3
- KTaglib
- oggvorbis
- OpenAL
- 身份认证服务
- KADM5
- Radius
- 针对命令行的扩展
- Ncurses(暂无人维护)
- Newt(暂无人维护)
- Readline
- 压缩与归档扩展
- Bzip2
- LZF
- Phar
- Rar
- Zip
- Zlib
- 信用卡处理
- 加密扩展
- Crack(停止维护)
- CSPRNG(核心)
- Hash扩展(4.2内置默认开启、7.4核心)
- Mcrypt(7.2移除)
- Mhash(过时)
- OpenSSL(*)
- 密码散列算法(核心)
- Sodium(+)
- 数据库扩展
- 数据库抽象层
- DBA
- dbx
- ODBC
- PDO(*)
- 针对各数据库系统对应的扩展
- CUBRID
- DB++(实验性)
- dBase
- filePro
- Firebird/InterBase
- FrontBase
- IBM DB2
- Informix
- Ingres
- MaxDB
- Mongo(MongoDB老版本)
- MongoDB
- mSQL
- Mssql
- MySQL
- OCI8(Oracle OCI8)
- Paradox
- PostgreSQL
- SQLite
- SQLite3
- SQLSRV(SQL Server)
- Sybase
- tokyo_tyrant
- 日期与时间相关扩展
- Calendar
- 日期/时间(核心)
- HRTime(*)
- 文件系统相关扩展
- Direct IO
- 目录(核心)
- Fileinfo(内置)
- 文件系统(核心)
- Inotify
- Mimetype(过时)
- Phdfs
- Proctitle
- xattr
- xdiff
- 国际化与字符编码支持
- Enchant
- FriBiDi
- Gender
- Gettext
- iconv(内置默认开启)
- intl
- 多字节字符串(mbstring)
- Pspell
- Recode(将要过时)
- 图像生成和处理
- Cairo
- Exif
- GD(内置)
- Gmagick
- ImageMagick
- 邮件相关扩展
- Cyrus
- IMAP
- Mail(核心)
- Mailparse
- vpopmail(实验性 )
- 数学扩展
- BC Math
- GMP
- Lapack
- Math(核心)
- Statistics
- Trader
- 非文本内容的 MIME 输出
- FDF
- GnuPG
- haru(实验性)
- Ming(实验性)
- wkhtmltox(*)
- PS
- RPM Reader(停止维护)
- RpmInfo
- XLSWriter Excel操作(*)
- php第三方库非扩展
- 进程控制扩展
- Eio
- Ev
- Expect
- Libevent
- PCNTL
- POSIX
- 程序执行扩展(核心)
- parallel
- pthreads(*)
- pht
- Semaphore
- Shared Memory
- Sync
- 其它基本扩展
- FANN
- GeoIP(*)
- JSON(内置)
- Judy
- Lua
- LuaSandbox
- Misc(核心)
- Parsekit
- SeasLog(-)
- SPL(核心)
- SPL Types(实验性)
- Streams(核心)
- stream_wrapper_register
- stream_register_wrapper(同上别名)
- stream_context_create
- stream_socket_client
- stream_socket_server
- stream_socket_accept
- stream_socket_recvfrom
- stream_socket_sendto
- Swoole(*)
- Tidy扩展
- Tokenizer
- URLs(核心)
- V8js(*)
- Yaml
- Yaf
- Yaconf(核心)
- Taint(检测xss字符串等)
- Data Structures
- Igbinary(7.0+)
- 其它服务
- 网络(核心)
- Sockets
- socket_create
- socket_bind(服务端即用于监听的套接字)
- socket_listen(服务端)
- socket_accept(服务端)
- socket_connect(客户端)
- socket_read
- socket_recv(类似socket_read)
- socket_write
- socket_send
- socket_close
- socket_select
- socket_getpeername
- socket_getsockname
- socket_get_option
- socket_getopt(socket_get_option的别名)
- socket_set_option
- socket_setopt( socket_set_option的别名)
- socket_recvfrom
- socket_sendto
- socket_addrinfo_bind
- socket_addrinfo_connect
- socket_addrinfo_explain
- socket_addrinfo_lookup
- socket_clear_error
- socket_last_error
- socket_strerror
- socket_cmsg_space
- socket_create_listen
- socket_create_pair
- socket_export_stream
- socket_import_stream
- socket_recvmsg
- socket_sendmsg
- socket_set_block
- socket_set_nonblock
- socket_shutdown
- socket_wsaprotocol_info_export
- socket_wsaprotocol_info_import
- socket_wsaprotocol_info_release
- cURL(*)
- curl_setopt
- Event(*)
- chdb
- FAM
- FTP
- Gearman
- Gopher
- Gupnp
- Hyperwave API(过时)
- LDAP(+)
- Memcache
- Memcached(+)
- mqseries
- RRD
- SAM
- ScoutAPM
- SNMP
- SSH2
- Stomp
- SVM
- SVN(试验性的)
- TCP扩展
- Varnish
- YAZ
- YP/NIS
- 0MQ(ZeroMQ、ZMQ)消息系统
- 0mq例子
- ZooKeeper
- 搜索引擎扩展
- mnoGoSearch
- Solr
- Sphinx
- Swish(实验性)
- 针对服务器的扩展
- Apache
- FastCGI 进程管理器
- IIS
- NSAPI
- Session 扩展
- Msession
- Sessions
- Session PgSQL
- 文本处理
- BBCode
- CommonMark(markdown解析)
- cmark函数
- cmark类
- Parser
- CQL
- IVisitor接口
- Node基类与接口
- Document
- Heading(#)
- Paragraph
- BlockQuote
- BulletList
- OrderedList
- Item
- Text
- Strong
- Emphasis
- ThematicBreak
- SoftBreak
- LineBreak
- Code
- CodeBlock
- HTMLBlock
- HTMLInline
- Image
- Link
- CustomBlock
- CustomInline
- Parle
- 类函数
- PCRE( 核心)
- POSIX Regex
- ssdeep
- 字符串(核心)
- 变量与类型相关扩展
- 数组(核心)
- 类/对象(核心)
- Classkit(未维护)
- Ctype
- Filter扩展
- 过滤器函数
- 函数处理(核心)
- quickhash扩展
- 反射扩展(核心)
- Variable handling(核心)
- Web 服务
- OAuth
- api
- 例子:
- SCA(实验性)
- SOAP
- Yar
- XML-RPC(实验性)
- Windows 专用扩展
- COM
- 额外补充:Wscript
- win32service
- win32ps(停止更新且被移除)
- XML 操作(也可以是html)
- libxml(内置 默认开启)
- DOM(内置,默认开启)
- xml介绍
- 扩展类与函数
- DOMNode
- DOMDocument(最重要)
- DOMAttr
- DOMCharacterData
- DOMText(文本节点)
- DOMCdataSection
- DOMComment(节点注释)
- DOMDocumentFragment
- DOMDocumentType
- DOMElement
- DOMEntity
- DOMEntityReference
- DOMNotation
- DOMProcessingInstruction
- DOMXPath
- DOMException
- DOMImplementation
- DOMNamedNodeMap
- DOMNodeList
- SimpleXML(内置,5.12+默认开启)
- XMLReader(5.1+内置默认开启 用于处理大型XML文档)
- XMLWriter(5.1+内置默认开启 处理大型XML文档)
- SDO(停止维护)
- SDO-DAS-Relational(试验性的)
- SDO DAS XML
- WDDX
- XMLDiff
- XML 解析器(Expat 解析器 默认开启)
- XSL(内置)
- 图形用户界面(GUI) 扩展
- UI
- PHP SPL(PHP 标准库)
- 数据结构
- SplDoublyLinkedList(双向链表)
- SplStack(栈 先进后出)
- SplQueue(队列)
- SplHeap(堆)
- SplMaxHeap(最大堆)
- SplMinHeap(最小堆)
- SplPriorityQueue(堆之优先队列)
- SplFixedArray(阵列【数组】)
- SplObjectStorage(映射【对象存储】)
- 迭代器
- ArrayIterator
- RecursiveArrayIterator(支持递归)
- DirectoryIterator类
- FilesystemIterator
- GlobIterator
- RecursiveDirectoryIterator
- EmptyIterator
- IteratorIterator
- AppendIterator
- CachingIterator
- RecursiveCachingIterator
- FilterIterator(遍历并过滤出不想要的值)
- CallbackFilterIterator
- RecursiveCallbackFilterIterator
- RecursiveFilterIterator
- ParentIterator
- RegexIterator
- RecursiveRegexIterator
- InfiniteIterator
- LimitIterator
- NoRewindIterator
- MultipleIterator
- RecursiveIteratorIterator
- RecursiveTreeIterator
- 文件处理
- SplFileInfo
- SplFileObject
- SplTempFileObject
- 接口 interface
- Countable
- OuterIterator
- RecursiveIterator
- SeekableIterator
- 异常
- 各种类及接口
- SplSubject
- SplObserver
- ArrayObject(将数组作为对象操作)
- SPL 函数
- 预定义接口
- Traversable(遍历)接口
- Iterator(迭代器)接口
- IteratorAggregate(聚合式迭代器)接口
- ArrayAccess(数组式访问)接口
- Serializable 序列化接口
- JsonSerializable
- Closure 匿名函数(闭包)类
- Generator生成器类
- 生成器(php5.5+)
- yield
- 反射
- 一、反射(reflection)类
- 二、Reflector 接口
- ReflectionClass 类报告了一个类的有关信息。
- ReflectionObject 类报告了一个对象(object)的相关信息。
- ReflectionFunctionAbstract
- ReflectionMethod 类报告了一个方法的有关信息
- ReflectionFunction 类报告了一个函数的有关信息。
- ReflectionParameter 获取函数或方法参数的相关信息
- ReflectionProperty 类报告了类的属性的相关信息。
- ReflectionClassConstant类报告有关类常量的信息。
- ReflectionZendExtension 类返回Zend扩展相关信息
- ReflectionExtension 报告了一个扩展(extension)的有关信息。
- 三、ReflectionGenerator类用于获取生成器的信息
- 四、ReflectionType 类用于获取函数、类方法的参数或者返回值的类型。
- 五、反射的应用场景
- phpRedis
- API
- API详细
- redis DB 概念:
- 通用命令:rawCommand
- Connection
- Server
- List
- Set
- Zset
- Hash
- string
- Keys
- 事物
- 发布订阅
- 流streams
- Geocoding 地理位置
- lua脚本
- Introspection 自我检测
- biMap
- 原生
- php-redis 操作类 封装
- redis 队列解决秒杀解决超卖:
- swoole+框架笔记
- 安装及常用Cli操作
- TCP
- 4种回调函数的写法
- easyswoole
- 目录结构
- 配置文件
- Linux+Nginx
- 前置
- linux
- 开源网站镜像及修改yum源
- 下载linux
- Liunx中安装PHP7.4 的三种方法(Centos8)
- yum安装
- 源码编译安装
- LNMP一键安装
- 查看linux版本号
- 设置全局环境变量
- 查看php.ini必须存放的位置
- 防火墙与端口开放
- nohup 后台运行命令
- linux 查看nginx,php-fpm运行用户及用户组
- 网络配置
- CentOS中执行yum update时报错
- 关闭防火墙
- 查看端口是否被占用
- 查看文件夹大小
- nginx相关
- 一个典型的nginx配置
- nginx关于多个项目的配置(易于管理)
- nginx.config配置文件的结构
- 1、events
- 2、http
- nginx的location配置详解
- Nginx相关命令
- Nginx安装
- 配置伪静态
- 为静态配置例子
- apache
- nginx
- pathinfo模式
- Shell脚本
- bash
- shell 语言中 0 代表 true,0 以外的值代表 false。
- 变量
- shell字符串
- shell数组
- shell注释
- 向Shell脚内传递参数
- 运算符
- 显示命令执行结果
- printf
- test 命令
- 流程控制与循环
- if
- case
- for
- while
- until
- break和continue
- select 结构
- shell函数
- shell函数的全局变量和局部变量
- 将shell输出写入文件中(输出重定向)
- Shell脚本中调用另一个Shell脚本的三种方式
- 定时任务
- PHP实现定时任务的五种方法
- 优化
- ab压力测试
- 缓存
- opcache
- memcache
- php操作
- 数据库
- 配置
- 数据库锁机制
- 主从分布
- 数据库设计
- 逻辑设计
- 物理设计
- 字段类型的选择
- 笔记
- SET FOREIGN_KEY_CHECKS
- 字符集与乱码
- SQL插入 去除重复记录的实现
- 分区表
- nginx 主从配置
- nginx 负载均衡的配置
- 手动搭建Redis集群和MySQL主从同步(非Docker)
- Redis Cluster集群
- mysql主从同步
- 用安卓手机搭建 web 服务器
- 软件选择
- url重写
- 大流量高并发解决方案
- 权限设计
- ACL
- RBAC
- RBAC0
- RBAC1(角色上下级分层)
- RBAC2(用户角色限约束)
- RBAC3
- 例子
- Rbac.class.php
- Rbac2
- Auth.class.php
- fastadmin Auth
- tree1
- ABAC 基于属性的访问控制
- 总结:SAAS后台权限设计案例分析
- casbin-权限管理框架
- 开始使用
- casbinAPI
- casbin管理API
- RBAC API
- Think-Casbin
- 单点登录(SSO)
- OAuth授权
- OAuth 2.0 的四种方式
- 授权码
- 隐藏式
- 密码式
- 凭证式
- 更新令牌
- 例子:第三方登录
- 微服务架构下的统一身份认证和授权
- 代码审计
- 漏洞挖掘的思路
- 命令注入
- 代码注入
- XSS 反射型漏洞
- XSS 存储型漏洞
- xss过滤
- HTML Purifier文档
- 开始
- id规则
- class规则
- 过滤分类
- Attr
- AutoFormat
- CSS
- Cache
- Core
- Filter
- html
- Output
- Test
- URI
- 其他
- 嵌入YouTube视频
- 加快HTML净化器的速度
- 字符集
- 定制
- Tidy
- URI过滤器
- 在线测试
- xss例子
- 本地包含与远程包含
- sql注入
- 函数
- 注释
- 步骤
- information_schema
- sql注入的分类
- 实战
- 防御
- CSRF 跨站请求伪造
- 计动态函数执行与匿名函数执行
- unserialize反序列化漏洞
- 覆盖变量漏洞
- 文件管理漏洞
- 文件上传漏洞
- 跳过登录
- URL编码对照表
- XXE
- 前端、移动端
- html5
- meta标签
- flex布局
- javascript
- jquery
- 选择器
- 精细分类
- 事件
- on事件无效:
- jquery自定义事件
- 表单操作
- 通用
- select
- checkbox
- radio
- js正则相关
- js中判断某字符串含有某字符出现的次数
- js匹配指定字符
- $.getjson方法配合在url上传递callback=?参数,实现跨域
- pajax入门
- jquery的extend插件制作
- jquery的兼容
- jquery的连续调用:
- $ 和 jQuery 及 $() 的区别
- 页面响应顺序及$(function(){})等使用
- 匿名函数:
- ajax
- 获取js对象所有方法
- dom加载
- ES6函数写法
- ES6中如何导入和导出模块
- 数组的 交集 差集 补集 并集
- phantomjs
- js数组的map()方法操作json数组
- 实用函数
- js精确计算CalcEval 【价格计算】 浮点计算
- js精确计算2
- js数组与对象的遍历
- bootstrap
- class速查
- 常见data属性
- data-toggle与data-target的作用
- 组件
- bootstrapTable
- 表选项
- 表选项2
- 示例
- 数据格式(json)
- 用法(row:行,column:列)
- Bootstrap-table使用footerFormatter做统计列功能
- 示例2
- JQuery-Jquery的TreeGrid插件
- 服务器端分页
- 合并单元格1
- 合并单元格2
- 合并单元格3
- 合并单元格4
- 合并单元格5(插件)
- 列求和
- 添加行,修改行、扩展行数据
- 扩展
- 开源项目
- PhpSpreadsheet
- 实例
- 会员 数据库表设计
- 程序执行
- 开发总结
- API接口
- API接口设计
- json转化
- app接口
- 杂项
- 三方插件库
- 检测移动设备(包括平板电脑)
- curl封装
- Websocket
- 与谷歌浏览器交互
- Crontab管理器
- 实用小函数
- PHP操作Excel
- SSL证书
- sublime Emmet的快捷语法
- 免费翻译接口
- 接口封装
- 免费空间
- 架构师必须知道的26项PHP安全实践
- 大佬博客
- 个人支付平台
- RPC(远程调用)及框架