文件名称:TheSportsDb:PHP库连接到http的api
文件大小:102KB
文件格式:ZIP
更新时间:2024-06-14 17:54:53
PHP
体育数据库 PHP库连接到的api 范例程式码 <?php include_once __DIR__ . '/default_bootstrap.php' ; // Get all sports. $ sports = $ db -> getSports (); // Print the first sport. $ sport = reset ( $ sports ); print_r ( $ sport -> raw ()); // Get the leagues of this sport (lazy loaded). $ leagues = $ sport -> getLeagues (); // Print the first league. $ league = reset ( $ leagues ); print_r ( $ league -> raw ()); // Ge