]> git.mxchange.org Git - hub.git/blob - udp-inc.php
Example UDP server/client scripts added (license: see comments on online-documentatio...
[hub.git] / udp-inc.php
1 <?php
2 global $last_msg;
3 $last_msg = "";
4
5 function out ($file, $line, $message, $displayDouble = false) {
6         global $last_msg;
7         if (($last_msg != $message) || ($displayDouble)) {
8                 print(basename($file)."[${line}]: ${message}\n");
9                 $last_msg = $message;
10         }
11 }
12
13 ?>