Skip to content

Instantly share code, notes, and snippets.

@ikariiin
Created September 22, 2016 06:58
Show Gist options
  • Save ikariiin/6a22fdd2bda07b7802b8f745701cd3f4 to your computer and use it in GitHub Desktop.
Save ikariiin/6a22fdd2bda07b7802b8f745701cd3f4 to your computer and use it in GitHub Desktop.
<?php declare(strict_types = 1);
/**
* Created by PhpStorm.
* User: lelouch
* Date: 21/9/16
* Time: 5:52 PM
*/
$client = stream_socket_client("tcp://127.0.0.1:47806");
if($client) {
fwrite($client, $argv[1]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment