Skip to content

Instantly share code, notes, and snippets.

View kinokoRider's full-sized avatar

kinokoRider

View GitHub Profile
@kinokoRider
kinokoRider / ScreenShot.php
Last active November 7, 2017 13:22
ScreenShot.php
<?php
//phantomjsを使って特定のWebサイトのスクショを取って保存するクラスです。
//jonnnnyw/php-phantomjs のラッパー?ラッピング?したものです。
//参考:https://github.com/jonnnnyw/php-phantomjs
use \JonnyW\PhantomJs\Client;
class ScreenShot{
private $client;
private $request;
private $response;
@kinokoRider
kinokoRider / LINEMessaginAPIWrapper.php
Last active November 5, 2017 04:28
LINEMessaginAPIWrapper.php
<?php
//LINEMessagingAPIに接続するラッパークラスです。
//line/line-bot-sdk-php を利用しています。
//参考:https://github.com/line/line-bot-sdk-php
class LineMessage {
private $httpClient;
private $bot;
private $channelAccessToken = 'your-channel-acccessToken';
@kinokoRider
kinokoRider / DropBoxWrapper.php
Last active November 5, 2017 04:27
DropBoxWrapper.php
<?php
//このプログラムは kunalvarma05/dropbox-php-sdk を用いて、
//PHPでDropBoxを扱うためのラッパークラスです。
//参考:https://github.com/kunalvarma05/dropbox-php-sdk
use Kunnu\Dropbox\Dropbox;
use Kunnu\Dropbox\DropboxApp;
use Kunnu\Dropbox\DropboxFile;
use Kunnu\Dropbox\Exception;