1

ショートコード[twitter]がページに挿入されると、APIを介してTwitterのツイートを取得し、ページにエコーするワードプレスプラグインを作成しようとしています。

エラーが発生しました:

「致命的なエラー:45行目のC:\ WAMP \ WWW \ WP \ WP-CONTENT \プラグイン\PLOG\ PLUGIN.PHPの未定義の関数CURL_INIT()を呼び出します。」

コードに構文エラーはなく、論理エラーもありません。

コードは次のとおりです。

<?php
/* Plugin Name: Testing a Plugin
 * Plugin URI: http://www.wordpress.com
 * Description: Just Testing out a plugin.
 * Author: Knooww
 * Author URI: http://www.wordpress.com
 */
?>
<?php
//limit calls to API..
// Save data in cache, refresh content after an hour

add_shortcode('twitter',  function ($atts,$content){

          $atts = shortcode_atts(array('username'=>'Default-Username',
                                 'content' =>!empty($content) ? $content:'Follow me on twitter',
                                 'show_tweets'=>'false',
                                 'tweet_reset_time'=>10, //time to refresh fetch of tweets
                                 'num_tweets'=>5

            ),$atts);


    extract($atts);
    if($show_tweets){

        $tweets = fetch_tweets($num_tweets,$username,$tweet_reset_time);
    }


//return '<a href="http://www.twitter.com/'.$username.'">'.$content.'</a>';

});// end add_shortcode

function fetch_tweets($num_tweets,$username,$tweet_reset_time){

    $tweets = curl("https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name='$username'&count=2");
  print_r($tweets);  

}

function curl($url){

$c = curl_init($url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($c, CURLOPT_TIMEOUT, 5);
return json_decode(curl_exec($c));



}


?>

足りないものを教えてください。

4

1 に答える 1

2

WindowsでのPHP/CURLのアクティブ化は、メモ帳(または同様のもの)を起動し、php.iniの次の行からセミコロンを削除します。

;extension=php_curl.dll

http://in1.php.net/manual/en/install.windows.extensions.phpをお読みください

于 2012-12-02T18:41:08.580 に答える