Created
August 24, 2012 13:49
-
-
Save benigumocom/3450723 to your computer and use it in GitHub Desktop.
GCM Androidから registration_id を受けて保存
This file contains hidden or 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 | |
$regId = isset($_POST['regId']) ? $_POST['regId'] : ''; | |
file_put_contents('register.txt', $regId); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment