PHPに投稿されたコード一覧
<?php $ip = $_SERVER["REMOTE_ADDR"]; $host = gethostbyaddr($ip); print "${host}(${ip})"; ?>
require_once 'tmhOAuth.php'; function tweetPost(){ if($_GET['tweet'] == 1){ //追加:http://example.com?tweet=1 とアクセスした時に実行するように
<?php var_dump($hogehoge); ?>
/** * 指定のアクションまたはフィルターにフックされている関数の優先度を取得 * @param $filter * @param $name * @return int
$request_token_url = "http://api.twitter.com/oauth/request_token"; $access_token_url = "http://api.twitter.com/oauth/access_token"; $authorize_url = "http://api.twitter.com/oauth/authenticate";
// ビュー $this->Form->input('Habtm', ['multiple' => 'checkbox']); // コントローラ if (isset($this->request->data['Habtm']['Habtm'][0])) {
<?php if(user_logged_in()){ /* 記事投稿時に「userid」というカスタムフィールドに見せたいユーザーのIDを入力しておきます。 */
$labels = array( '北海道' => '北海道', '青森県' => '青森県', '岩手県' => '岩手県', '宮城県' => '宮城県',
function search_term($term){ $tax = get_terms( $term, 'order=DESC&hide_empty=0' ); foreach ( $tax as $term ) { echo '<span><input type="checkbox" name="'.$term->taxonomy.'" id="'.$term->taxonomy.$term->term_id.'" value="'.$term->term_id.'" />'; echo '<label for="'.$term->taxonomy.$term->term_id.'">'.esc_html($term->name).'</label></span>';