Guest User

Untitled

a guest
Jan 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #!/usr/bin/php
  2. <?php
  3.  
  4.  
  5. include_once('status/TCP.php');
  6.  
  7.  
  8. $config =
  9. array (
  10.  
  11. 'General' =>
  12. array (
  13. 'IRC' =>
  14. (object)array(
  15. 'init' => function() { $this->tcp_status = new TCP('irc.st0rm.net', 6667); },
  16. 'status' => function() { return $this->tcp_status->status(); },
  17. 'popup' => function() { return 'Stuff'; }
  18. )
  19. )
  20.  
  21. );
  22.  
  23. $config['General']['IRC']->init();
  24. printf('Status: '.$config['General']['IRC']->status());
Add Comment
Please, Sign In to add comment