Exemplo n.º 1
0
 public static function Create()
 {
     self::$Socket = socket_create(AF_UNIX, SOCK_STREAM, 0);
     if (self::$Socket !== false) {
         return true;
     } else {
         return false;
     }
 }