Skip to content

Instantly share code, notes, and snippets.

@among753
among753 / search.php
Last active November 4, 2020 10:31
Test Twitter API v1.1 with Application-only authentication
<?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");
@among753
among753 / dream_counter.php
Last active December 19, 2015 22:19
PHPで配列内の特定の文字が何個あるか検索する方法教えて。。
<?php
$array = array(
"あいうえ夢あいう夢おあいうえ",
"あい夢夢夢夢夢夢夢夢夢いうえ",
"あいうえ夢あいう夢おあいうえ",
"あい夢夢夢夢夢夢夢夢夢いうえ",
"あい夢えお夢い夢えお夢いうえ",
"あ夢夢夢夢夢夢夢夢夢夢夢夢え",
"夢いうえおあいうえおあい夢え",
"あいう夢夢夢夢夢夢夢あ夢うえ",
@among753
among753 / search_gist.php
Last active June 23, 2018 14:50
Application-only auth に対応したtwitteroauth.phpを使用してtwitter search API を叩く例 twitteroauth.phpは下記のGitHubのソースを使用しないと動きません。 GitHub: https://github.com/among753/twitteroauth
<?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");
<?php echo 'HELLO WORLD';