MetaModels\Helper\TableManipulation::isValidTablename PHP Method

isValidTablename() public static method

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