Checks if the key is a property.
string $key: The key to check.
bool TRUE of the key is a property, FALSE otherwise.
public static function property($key) { return is_string($key) && $key[0] == '#'; }