MetaModels\Helper\TableManipulation::isValidColumnName PHP 메소드

isValidColumnName() 공개 정적인 메소드

Checks whether the column with the given name is a MetaModel system column.
public static isValidColumnName ( string $strColName ) : boolean
$strColName string The name of the column.
리턴 boolean true if the column is a system column, false otherwise.
    public static function isValidColumnName($strColName)
    {
        return self::isValidMySQLIdentifier($strColName) && !self::isReservedWord($strColName);
    }