Skip to content

Instantly share code, notes, and snippets.

View shivamanhar's full-sized avatar

Shiva Manhar shivamanhar

View GitHub Profile
@shivamanhar
shivamanhar / apn-server.php
Created August 14, 2017 13:00 — forked from samvermette/apn-server.php
Quickly send an Apple Push Notification using PHP
<?php
$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsCert = 'apns-dev.pem';
$apnsPort = 2195;
$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);
$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);
@shivamanhar
shivamanhar / Layouts.php
Created November 16, 2015 15:08 — forked from queiroz/Layouts.php
CodeIgniter alternative layouts Library
<?php
class Layouts
{
// hold codeigniter instance
private $CI;
// hold layout title
private $layout_title = null;