Skip to content

Instantly share code, notes, and snippets.

@akiyan
akiyan / autoUpdate.php
Last active December 29, 2015 15:29 — forked from Leko/autoUpdate.php
UserAgentがそのまま(PHP/x.x.)だとForbiddenが出るので適当なUAに変更するようにした。 Warning: file_get_contents(https://api.github.com/repos/boxen/puppet-autoconf/tags): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /Users/akiyan/our-boxen/bin/autoUpdate.php on line 14
<?php
define("READ_START_SYMBOL", "# ---auto update---");
define("READ_END_SYMBOL", "# ---/auto update---");
//
function notify_update($name, $from, $to) {
echo "updated '".$name."' from ".$from." to ".$to."\n";
}