This is part third and final part in my PHP command line tutorial series. If you didn’t see parts 1 and 2:
More File and Disk Functions
Getting Disk Space and Usage
The disk_total_size and disk_free_space functions can tell you how much disk space you have and how much is available, respectively:
$disksize = disk_total_space("/");
$size = round(number_format($disksize / 1024 / 1024 / 1024, 2));
$diskfree = disk_free_space("/");
$freesize = round(number_format($diskfree / 1024 / 1024 / 1024, 2));
echo "Total Disk Size: $size GB\n";
echo "Free Disk Space: $freesize GB";
Finding Files
A little-known function called glob works sort of like the locate command, in that it will find files that match a certain string, but it only looks in the current folder and is not recursive. For example, the below code will search for all files in the current folder that end with .txt:
foreach (glob("*.txt") as $file) {
echo "$file size " . filesize($file) . "\n";
}
You can also use something like this example to run as a loop and recursively search through folders.
Getting File Path Information
The famous pathinfo function can give you information about a file on your system:
$file = "/etc/php5/cli/php.ini";
if(file_exists($file)){
$info = pathinfo($file);
print_r($info);
}
This will print out an array like below:
Array
(
[dirname] => /etc/php5/cli
[basename] => php.ini
[extension] => ini
[filename] => php
)
Which you can echo out values to and use in your scripts, for example:
$file = "/etc/php5/cli/php.ini";
if(file_exists($file)){
$info = pathinfo($file);
$dir = $info[dirname];
chdir($dir);
echo "Changed directory to" . getcwd();
}
There are also similar functions that will provide the same information, individually:
$file = "/etc/php5/cli/php.ini";
echo "Absolute File Name: " . realpath($file) . "\n";
echo "File Name: " . basename($file) . "\n";
echo "File path: " . dirname($file) . "\n";
This will return:
Absolute File Name: /etc/php5/cli/php.ini
File Name: php.ini
File path: /etc/php5/cli
Some Random Script Fragments and Functions
Prompt a user for input:
fwrite(STDOUT, "Hello...\nWhat is your name? ");
$name = trim(fgets(STDIN));
fwrite(STDOUT, "Hello, $name!\n");
Print out your username and date:
$me = exec('whoami');
echo "Hello, " . $me . " The time is currently " .date("r") . "\n";
Generate random strings and passwords:
echo crypt("mypassword","randomsalt");
echo md5("mypassword");
Random password, variable length:
function randomPass($length) {
$chars = "abcdefghijkmnopqrstuvwxyz023456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '' ;
while ($i <= $length) {
$num = rand() % 33;
$tmp = substr($chars, $num, 1);
$pass = $pass . $tmp;
$i++;
}
return $pass;
}
$password = randomPass(10);
echo "Your random password is: $password";
List loaded PHP extensions, check is specific extension is loaded:
$extensions = get_loaded_extensions();
foreach ($extensions as &$value) {
echo $value . "\n";
}
if (!extension_loaded('gd')) {
echo "GD extension is not loaded";
exit;
}
Get Server’s CPU Load:
$load = sys_getloadavg();
echo "Current: " . $load[0] . "\n";
echo "5-min: " . $load[1] . "\n";
echo "15-min: " . $load[2] . "\n";
Get PHP memory limit and convert to human-readable format:
function convert($size)
{
$unit=array('b','kb','mb','gb','tb','pb');
return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i];
}
echo convert(memory_get_usage(true));
Some Useful Links/Tutorials
Command Line PHP Tutorial
Simple System Maintenance with PHP-CLI – Simple System Maintenance with PHP-CLI
Command Line PHP (IBM)
Running Daemons in PHP
PHP Class for Coloring Command Line Output
PHP Command Line Progress Bar