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

isValidTablename() 공개 정적인 메소드

Checks whether the given table name is valid.
public static isValidTablename ( string $strTableName ) : boolean
$strTableName string The table name to check.
리턴 boolean true if the table name is valid, false otherwise.
    public static function isValidTablename($strTableName)
    {
        return self::isValidMySQLIdentifier($strTableName) && !self::isReservedWord($strTableName);
    }