Created
January 11, 2017 15:42
-
-
Save eduardo-g-silva/78606f0e55d5b30c3aa4ce89faaaba04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once('vendor/autoload.php'); | |
$file = file_get_contents('/<path-to-output-file>/wpcore.txt', true); | |
$pushbullet = new PHPushbullet\PHPushbullet('xxxxxxxxxxxxxxxxxxxxxxxxxxx'); | |
$pushbullet->device('LGE Nexus 5')->note('my server', $file); | |
$pushbullet->user('[email protected]')->note('my server', $file); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment