Skip to content

Instantly share code, notes, and snippets.

@liorkesos
Created October 18, 2015 12:19
Show Gist options
  • Save liorkesos/301ab0feacc2a4270d61 to your computer and use it in GitHub Desktop.
Save liorkesos/301ab0feacc2a4270d61 to your computer and use it in GitHub Desktop.
public function publishEvent($data) {
$opts = array(
'http' => array(
'method' => 'POST',
'header' => "Content-type: application/json",
'content' => json_encode($data)
)
);
$context = stream_context_create($opts);
$response = file_get_contents(self::INDEX_ENDPOINT_01.'/'.$data['index'].'/'.$data['eType'], false, $context);
...
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment