我在swift中使用String处理。但是当我想将String.UTF8View.Index转换为String.CharacterView.Index时,我遇到了一些麻烦。有人知道该怎么办?提前感谢!
答案 0 :(得分:1)
使用以下init函数:
$jsondata = file_get_contents("hotsongs.json");
$json = json_decode($jsondata, true);
$output = "<table><tr><th>Artist Name</th><th>Title</th></tr>";
foreach($json['response']['songs'] as $song){
$output .='<tr>';
$output .= '<td>'.$song['artist_name'].'</td>';
$output .= '<td>'.$song['title'].'</td>';
$output .='</tr>';
}
$output .= "</table>";
echo $output;
您必须在此函数中使用String作为参数。