Posts Tagged "Php"

Script php per aggiungere un nuovo virtual site sotto Apache.

Creare lo script nella cartella desiderata

vim scriptname.php

Continua…

Convertire i bytes in kb,mb,gb

Piccola funzioncina x conversione dei byte che mi sono dovuto fare per 1 progetto.
Funziona solo fino ai giga, per i terra aggiungete un paio di linee

public string convertByteInOther(string stBytes)
        {
            string ris="";
            double bytes = Convert.ToInt32(stBytes);
            if (bytes < 1048576)
                ris = Convert.ToString(Math.Round(bytes / 1024, 2)) + " Kb";
            else if (bytes < 1073741824)
                ris = Convert.ToString(Math.Round(bytes / 1024 / 1024, 2)) + " Mb";
            else if (bytes < 1099511627776)
                ris = Convert.ToString(Math.Round(bytes / 1024 / 1024 / 1024, 2)) + " Gb";
            return ris;
        }