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(遠程調用)及框架