<?php · $fp = fopen('data.txt', 'a');//opens file in append mode · fwrite($fp, ' this is additional text '); · fwrite($fp, 'appending data'); · fclose($fp); · echo " ...
確定! 回上一頁