<?php
$links = array (
0 =>
array (
'rel' => 'advertisements',
'href' => 'https://api.teamsnap.com/v3/advertisements'
),
1 =>
array (
'rel' => 'active_season_team',
'href' => 'https://api.teamsnap.com/v3/teams'
),
2 =>
array (
'rel' => 'assignments',
'href' => 'https://api.teamsnap.com/v3/assignments'
),
3 =>
array (
'rel' => 'availabilities',
'href' => 'https://api.teamsnap.com/v3/availabilities'
)
);
function get_link($links, $cat) {
if(($key = array_search($cat, array_column($links, 'rel'))) !== false) {
return $links[$key]['href'];
}
else {
return '';
}
}
echo get_link($links, 'active_season_team');
- Output for 7.1.26 - 7.1.33, 7.2.17 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- https://api.teamsnap.com/v3/teams
preferences:
141.65 ms | 407 KiB | 5 Q