fputs()函數(shù)可以寫(xiě)入打開(kāi)的文件。 此函數(shù)可以在文件末尾或達(dá)到指定長(zhǎng)度時(shí)停止(以先到者為準(zhǔn))。 此函數(shù)可以在成功時(shí)返回寫(xiě)入的字節(jié)數(shù),或在失敗時(shí)返回FALSE,并且此函數(shù)是fwrite()函數(shù)的別名。
fputs(file,string,length)
此函數(shù)是二進(jìn)制安全的,這意味著可以使用此函數(shù)寫(xiě)入二進(jìn)制數(shù)據(jù)(例如圖像和字符數(shù)據(jù))。
<?php $file = fopen("sample.txt", "w"); echo fputs($file, "Hello nhooo!!!!"); fclose($file); ?>
輸出結(jié)果
24