“PHP -Datei Inhalt setzen” Code-Antworten

Datei_put_Contents PHP JSON -Datei

$data[] = $_POST['data'];

$inp = file_get_contents('results.json');
$tempArray = json_decode($inp);
array_push($tempArray, $data);
$jsonData = json_encode($tempArray);
file_put_contents('results.json', $jsonData);
Waved Albatross

PHP -Datei Inhalt setzen

<?php
$data = ["[email protected]" => ["more" => ["yes" => "More"]]];

$inp = file_get_contents('results.json');
$tempArray = json_decode($inp);
array_push($tempArray, $data);
$jsonData = json_encode($tempArray);
file_put_contents('results.json', $jsonData);
adeleyeayodeji

PHP File_put_Contents

file_put_contents ($filename, $data, $flags = 0, $context = null): int
Xediri

Ähnliche Antworten wie “PHP -Datei Inhalt setzen”

Fragen ähnlich wie “PHP -Datei Inhalt setzen”

Weitere verwandte Antworten zu “PHP -Datei Inhalt setzen” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen