{ "activity": "Take a spontaneous road trip with some friends", "accessibility": 0.3, "type": "social", "participants": 4, "price": 0.2, "link": "", "key": "2085321" }
<?php /** * Created by PhpStorm. * User: FZS * Time: 2020/02/01 12:33 */ //---------------------------------- // 随机活动 调用类 //---------------------------------- class freeApi { private $apiUrl; public function __construct() { $this->apiUrl = 'https://www.boredapi.com/api/activity/'; } /** * 获取结果 * @return array */ public function getResult() { return file_get_contents($this->apiUrl); } }