$__data
$__data : array
数组是序列对象的最基本数据存储结构对象
Represents a collection of keys and values.To browse the .NET Framework source code for this type, see the Reference Source.
模拟VB.NET之中的字典对象,在字典之中的每一个元素对象都是 由{key, value}这样子的键值对所构成的
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. |
ContainsKey(string $key) : boolean
Determines whether the System.Collections.Generic.Dictionary<T1,T2> contains the specified key.
判断指定的键名是否存在于当前的字典对象之中
string | $key | The key to locate in the System.Collections.Generic.Dictionary<T1,T2>. |
true if the System.Collections.Generic.Dictionary<T1,T2> contains an element with the specified key; otherwise, false.