Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 12113cdf59d85cfc9779e0b1adce91bc > files > 10

php-analog-1.0.10-4.mga7.noarch.rpm

<?php

require '../lib/Analog.php';

$log_file = 'log.txt';

Analog::handler (Analog\Handler\File::init ($log_file));

Analog::log ('foo');
Analog::log ('bar');

echo file_get_contents ($log_file);
unlink ($log_file);

?>