Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了以下问题按预期写入。
<?php $csvData = array($info1, $info2, $info3, $info4, $answer4, $answer5, $answer6, $answer8, $answer9, $answer10, $answer12); $fp = fopen('data.csv', 'a'); fputcsv($fp, $csvData); fclose($fp); ?>
预先感谢您的任何帮助。