A função ftruncate() trunca o arquivo aberto no comprimento especificado.
Retorna TRUE se for bem-sucedido e FALSE se falhar.
ftruncate(arquivo,tamanho)
parâmetro | descrever |
---|---|
arquivo | Obrigatório. Especifica o arquivo aberto a ser truncado. |
tamanho | Obrigatório. Especifica o novo tamanho do arquivo. |
<?php//verificar tamanho do arquivoecho filesize("test.txt");echo "<br />";$file = fopen("test.txt", "a+");ftruncate($file,100);fclose( $file);//Limpa o cache e verifica o tamanho do arquivo novamenteclearstatcache();echo filesize("test.txt");?>
O código acima irá gerar:
792100