Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

Official ZPE/YASS documentationcopy_of

Official ZPE/YASS documentationcopy_of

copy_of (mixed value) ⇒ mixed

Returns a pure copy of a value.

First available: Version 1.9.13

Notes

Prior to the introduction of this, ZPETypes such as the ZPEFunction, ZPEList, ZPEAssociativeArray, ZPEString and ZPEObject data types could not directly be copied. Since ZPE uses by reference when using variable assignment changes made to one ZPEType affect any other instances of it.
YASS
$x = [11, 22, 33]
$y = $x
$y[1] = 44

//Will print [11, 44, 33]
print($x)

Comments
Feedback 👍
Comments are sent via email to me.