$word = getSomething();
file_put_contents(ROOT_PATH."/path/to/words", " w1:".$word, FILE_APPEND);
file_put_contents(p1, p2, p3);
p1: 要写入文件路径(没有会创建)
p2: 要写入 的值
p3: 规定如何打开/写入文件
1.FILE_USE_INCLUDE_PATH:检查 filename 副本的内置路径
2.FILE_APPEND:在文件末尾以追加的方式写入数据
3.LOCK_EX:对文件上锁
1