PHP will throw an error like:
Parse error: syntax error, unexpected T_ARRAY, expecting T_STRING
if you try:
class Array
{
}
$myClass = new Array;
Instead, try something like
class myArray
{
}
$myClass = new myArray;
[edit] I'll elaborate on that a little, they're reserved for a reason because in the first scenario above, PHP wouldn't be able to tell the difference between you defining an array or initialising a class of the same name, so it throws an error. There's no way round this like in MySQL, for example, where you can escape reserved words with a backtick. So in PHP you're forced to change the name, you don't have to change it much, one char will do as long as you're not using the exact same name as a reserved word.
Hope that helps!