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 | |
/** | |
* GET search/tweets with Application-only authentication test. | |
* | |
* K.Sasaki <among753@gmail.com> | |
* https://github.com/among753/twitteroauth | |
* | |
*/ | |
header("content-type: text/html; charset=utf-8"); |
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 | |
$array = array( | |
"あいうえ夢あいう夢おあいうえ", | |
"あい夢夢夢夢夢夢夢夢夢いうえ", | |
"あいうえ夢あいう夢おあいうえ", | |
"あい夢夢夢夢夢夢夢夢夢いうえ", | |
"あい夢えお夢い夢えお夢いうえ", | |
"あ夢夢夢夢夢夢夢夢夢夢夢夢え", | |
"夢いうえおあいうえおあい夢え", | |
"あいう夢夢夢夢夢夢夢あ夢うえ", |
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 | |
/* Load required lib files. */ | |
require_once('twitteroauth/twitteroauth.php');// Application-only auth に対応したものを使うこと | |
//require_once('config.php'); | |
define('CONSUMER_KEY', 'xxxxxxxxxxxxxxxxxxxx'); | |
define('CONSUMER_SECRET', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'); | |
header("content-type: text/html; charset=utf-8"); |
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 echo 'HELLO WORLD'; |