配列の値を取得したい。 これは私の配列値である:PHPを使って配列値を取り出す方法
overlay.txt:
{"title":"sss","description":"sss","code":"sss"}
{"title":"trtr","description":"trtr","code":"tyrytr"}
{"title":"ret54","description":"56tr","code":"ty76"}
{"title":"rgfdg","description":"dfgdfg","code":"dfgdfg"}
{"title":"asfafdsf","description":"sdfsdf","code":"sdfsdfsdf"}
これは私のコードです:これはworking.whyされていませんか? overlay.txtファイルから値を取得する方法。 私はすべてのタイトル価値を得ていませんでした。 overlay.txtからタイトル値を取得する方法がわかりません $タイトルが空です。 ここで、$ title値を取得するためにコードを変更したいとします。
$info = array();
$folder_name = $this->input->post('folder_name');
$info['title'] = $this->input->post('title');
$info['description'] = $this->input->post('description');
$info['code'] = $this->input->post('code');
$json = json_encode($info);
$file = "./videos/overlay.txt";
$fd = fopen($file, "a"); // a for append, append text to file
fwrite($fd, $json);
fclose($fd);
$filecon = file_get_contents('./videos/overlay.txt', true);
$this->load->view('includes/overlays',$filecon);
//overlays page;
foreach($filecon as $files)
{
$title=$files['title'];
echo $title;
}
「これは動作していません」について詳しく説明する必要があります。 –
私はあなたがものを混ぜていると思います。あなたのjsonコンテンツはajaxによってPHPに送られますか? "not working"は '$ json'がnullであることを意味しますか? –
overlay.txtから値を取得するには、ok.how file.send me PHPコード。 –