How to count likes on FB page?

前端 未结 6 1513
执念已碎
执念已碎 2021-01-15 01:05

I have to do a very simple operation but my programming skills are not enough. I have to count likes in Facebook page and print that number on my web-site. I have two script

6条回答
  •  广开言路
    2021-01-15 01:30

    Try this code

    likes){
            $likes = $json_output->likes;
          }
          return $likes;   
        }
        function get_contents($url){
           $ch = curl_init($url);
           curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
           curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
           curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
           curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
           $data = curl_exec($ch);
           curl_close($ch);
           return $data;
        }
    ?>
    

提交回复
热议问题