Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 3a649fa26de04b0283b9d5ebab66c377 > files > 7

php-analog-1.0.3-2.mga4.noarch.rpm

<?php

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

Analog::handler (Analog\Handler\Buffer::init (
	Analog\Handler\Mail::init (
		'you@example.com',
		'Log messages',
		'noreply@example.com'
	)
));

// will all be sent as one email instead of three
Analog::log ('Message one');
Analog::log ('Message two');
Analog::log ('Message three');

?>