Exemple #1
0
		/// <summary>
		/// Creates a deep copy of this instance.
		/// </summary>
		/// <returns>The copy.</returns>
		public object DeepCopy()
		{
            var clone = new PhpArray(this, true);
            clone.EnsureWritable();
            return clone;
		}