Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
static function return_field_length($table = false, $field = false)
{
if($table !== false && $field !== false)
{
$sql = 'Show Fields From '.self::escape($table).'';
$type = '';
$result = mysql_query($sql);
while($row = mysql_fetch_object($result))
{
if($row->Field == $field){$type = $row->Type; break;}
}
if(strpos($type,'(') !== false)
{
$parts = explode("(", $type);
$num = explode(")",$parts[1]);
return = $num[0];
}
if(strpos($type,'tinytext') !== false)
{
return = 255;
}
if(strpos($type,'tinyblob') !== false)
{
return = 255;
}
if(strpos($type,'mediumtext') !== false)
{
return = 16777215;
}
if(strpos($type,'mediumblob') !== false)
{
return = 16777215;
}
if(strpos($type,'longtext') !== false)
{
return = 4294967295;
}
if(strpos($type,'longblob') !== false)
{
return = 4294967295;
}
if(strpos($type,'text') !== false)
{
return = 65535;
}
if(strpos($type,'blob') !== false)
{
return = 65535;
}
}
return false;
}