Skip to content

Instantly share code, notes, and snippets.

@falsecz
Created February 13, 2014 19:43
Show Gist options
  • Save falsecz/8982360 to your computer and use it in GitHub Desktop.
Save falsecz/8982360 to your computer and use it in GitHub Desktop.
<?php
class Logger {
private $fd;
public function __construct() {
$this->fd = @fopen('php://fd/3', 'w');
}
public function log($o) {
if($this->fd) {
return fputs($this->fd, "3:" . $o ."\n");
}
echo $o;
}
}
$logger = new Logger;
$logger->log('mrdka');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment