Sophie

Sophie

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

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

<?php

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

Analog::handler (Analog\Handler\Mongo::init (
	'localhost:27017',
	'testing',
	'log'
));

Analog::log ('Error message');
Analog::log ('Debug info', Analog::DEBUG);

$m = new MongoClient ('mongodb://localhost:27017');
$cur = $m->testing->log->find ();
foreach ($cur as $doc) {
	print_r ($doc);
}
$m->testing->log->remove ();

?>