我有以下代码:
dom.webcomponents.customelements.enabled
我每次运行脚本时都需要它仅使用新的代理重写txt文件。
有人可以帮我吗?
答案 0 :(得分:0)
您正在fopen
模式下使用'a'
。根据{{3}}:
'a'仅用于写作;将文件指针放在 文件。如果该文件不存在,请尝试创建它。在这种模式下, fseek()无效,写入始终会附加。
因此,您需要使用'w'
模式。像这样:
$fisier = fopen("bune.txt", "w");