$__data
$__data : array
数组是序列对象的最基本数据存储结构对象
A dynamics array object. Implements the System.Collections.IList interface using an array whose size is dynamically increased as required.To browse the .NET Framework source code for this type, see the Reference Source.
对集合类型的基本抽象
SaveTo(string $path, array $project = null, string $encoding = "utf8") : boolean
Save this data collection as csv file
string | $path | The csv file path for save this collection object. |
array | $project | The csv file header mapping. |
string | $encoding | The text file content encoding, by default is utf8 encoding. |
Add(\mix $obj) : integer
Adds an object to the end of the System.Collections.ArrayList.
\mix | $obj | The System.Object to be added to the end of the System.Collections.ArrayList. The value can be null. |
The System.Collections.ArrayList index at which the value has been added.
AddRange(array $array)
Adds the elements of an System.Collections.ICollection to the end of the System.Collections.ArrayList.
array | $array | The System.Collections.ICollection whose elements should be added to the end of the System.Collections.ArrayList. The collection itself cannot be null, but it can contain elements that are null. |