$newestPublished) { $newestInteraction = $interaction; $newestPublished = $publishedDate; } } // Check if a newest interaction was found if ($newestInteraction !== null) { // Convert the newest interaction to a readable format (You can customize this format as needed) $newestInteractionText = json_encode($newestInteraction, JSON_PRETTY_PRINT); // Write the newest interaction to the output file file_put_contents($outputFilePath, $newestInteractionText); echo "Newest interaction written to $outputFilePath\n"; } else { echo "No interactions found.\n"; } ?>