Skip to content

Instantly share code, notes, and snippets.

@mgng
Last active December 31, 2015 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgng/7907050 to your computer and use it in GitHub Desktop.
Save mgng/7907050 to your computer and use it in GitHub Desktop.
tailf access_log | php parse.php
<?php
// これつけないと動かないケースもある
// stream_set_blocking( STDIN, 1 );
while ( false !== ($line=trim( fgets(STDIN) ) ) ) {
// 何かしら処理
error_log( "{$line}\n", 3, "./log.txt" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment