Skip to content

Instantly share code, notes, and snippets.

@norman-twin
norman-twin / server_php74_init.sh
Last active April 13, 2021 16:22
New Server Initialization : PHP 7.4 | Nginx | Redis | Mongo | MySQL | Pear | Composer
sudo apt update;
sudo apt install nginx;
sudo add-apt-repository universe;
sudo apt install php-fpm php-mysql;
sudo apt install php-pear;
sudo apt install php7.4-dev;
sudo apt install php7.4-curl;
sudo apt install php7.4-mbstring;
sudo apt install composer;
@mayconbordin
mayconbordin / progress_bar.php
Created June 2, 2012 23:55
PHP CLI progress bar in 5 lines of code
<?php
function progress_bar($done, $total, $info="", $width=50) {
$perc = round(($done * 100) / $total);
$bar = round(($width * $perc) / 100);
return sprintf("%s%%[%s>%s]%s\r", $perc, str_repeat("=", $bar), str_repeat(" ", $width-$bar), $info);
}