<?php
  error_reporting (E_ALL);

  $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);

  echo $socket? "OK":"Error";

  
?>
