PHP-функция: is_objectСписок php-функций

javascript:

function is_object( mixed_var ){	// Finds whether a variable is an object
	// 
	// +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
	// +   improved by: Legaev Andrey
	// +   improved by: Michael White (http://crestidg.com)

	if(mixed_var instanceof Array) {
		return false;
	} else {
		return (mixed_var !== null) && (typeof( mixed_var ) == 'object');
	}
}

//Примеры:

alert ( is_object('23') +', ' + is_object({foo: 'bar'}) +', ' + is_object(null));