When running the following code:
<?php
$output = array();
exec("ping google.com", &$output);
foreach ($output as $key => $value) {
echo $value . "<br/>";
}
?>
Getting Deprecated: as follows
Call-time pass-by-reference has been deprecated in C:\xampp\htdocs\my_test\ajax_loop.php on line 3.
Please help.