Thread
:
Bug or not?
View Single Post
#
2
06-09-2007, 09:46 PM
Skyld
Script-fu
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Graal's comparison operator doesn't really compare the structure of an array like that; if you want to compare two arrays, convert them to strings first using the magic @ operator:
PHP Code:
if (@
temp
.
test1
== @
temp
.
test2
)
{
echo(
"MATCH"
);
}
__________________
Skyld
View Public Profile
View GraalOnline Profile
Find all posts by Skyld