Skip to content
chung-leong edited this page Mar 22, 2013 · 5 revisions

equal - Compare two arrays for equality

bool[] equal( float[] $x, float[] $y )

equal() compares each element in x with the corresponding element in y and returns the results in a boolean array.

###Parameters:

x - The first array.

y - The second array.

###Return Value: An array of booleans containing the comparison results. The size of the return value will match that of the larger of x and y.

Clone this wiki locally