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
[Adblock Plus 2.0] | |
! Title: Amazon SNS Unsubscribe Block | |
! License: CC0 (Public Domain) | |
! Homepage: https://www.cloudremix.net/ | |
! | |
||sns.us-east-2.amazonaws.com^ | |
||sns.us-east-1.amazonaws.com^ | |
||sns.us-west-1.amazonaws.com^ | |
||sns.us-west-2.amazonaws.com^ |
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 | |
echo '<pre>'; | |
echo '<span style="color:blue">DOWNLOADING...</span>'.PHP_EOL; | |
// ダウンロードファイル | |
file_put_contents('wp.zip', file_get_contents('https://ja.wordpress.org/latest-ja.zip')); | |
$zip = new ZipArchive(); | |
$res = $zip->open('wp.zip'); | |
if ($res === TRUE) { |