php $fp = fopen('data.txt', 'w');//opens file in write-only mode fwrite($fp, 'welcome '); fwrite($fp, 'to php file write'); fclose($fp); echo "File written ...
確定! 回上一頁