我在JSON中有一個博客API,我試圖使用PHP。我有一個名爲'index.php'的頁面,列出了從JSON文件中拉出的博客中的所有帖子,並將id從另一個頁面'post.php'從href鏈接傳遞到該頁面。使用ID標識符顯示JSON項目
我需要的「post.php中」頁面,當用戶點擊所選擇的職位
我下面顯示標題和其他財產的持有由「的index.php」送來的ID標識的單個職位:
<h2><?php echo $post->title ?></h2>
,但我需要做的是這樣
<h2><?php echo $post->id->$post->title ?></h2>
,以確保只有指定id後顯示 下面是一個在JSON
{
"posts": [
{
"type": "post",
"date": "2017-04-11T13:36:46+00:00",
"title": "Title here",
"content": "my content"
"author": {
"id": 878,
"nicename": "tretr",
"display_name": "name here",
"user_url": "",
"posts_url": "https:\\/\\/blogs.kent.ac.uk\\/kbs-news-events\\/author\\/cmb58\\/",
"meta": {
"description": "",
"first_name": "first name",
"last_name": "last name",
}
},
"id": 1234,
"permalink": "https:\/\/ link.....",
"modified": "2017-04-11T13:39:36+00:00",
"excerpt": "more here",
"meta": [],
etc.......
}
],
"http_status": 200
}
你想從這個json中提取什麼? –
嗨對不起,不知道你的意思 – wilky
我需要標題,日期和內容 – wilky