In this tutorial we’ll install the Debian Linux 9 (squeeze), Apache 2 with mpm-itk (to run each web as a isolated user),...
Installing PEAR framework and packages
Ástþór IPPEAR is a framework and distribution system for reusable PHP components.
1. Install the PEAR framework
get install php-pear
2. Restart apache
/etc/init.d/apace2 restart
3. Install a PEAR package (optional)
pear install Net_Ping-2.4.5
You can install any PEAR package using this command but in this example we’ll install the Net_Ping package
4. Here’s a sample PHP code to use the Net_Ping package (optional)
require_once "Net/Ping.php";
$ping = Net_Ping::factory();
$host = 'debiantutorials.com';
$count = 3;
if (PEAR::isError($ping))
{
echo $ping->getMessage();
}
else
{
$ping->setArgs(array('count' => $count));
$res = $ping->ping($host);
foreach ($res->_raw_data as $line)
{
echo $line . "\n";
}
}
This code will ping the host debiantutorials.com three times and echo the results