I'm having this error, I read that this message appears when an error occurs in a previous line of code, which is strange for me, it's happening in the first line of the file.
Parse error: syntax error, unexpected '$ folder' (T_VARIABLE) in
<?php
$pasta = $_SERVER["DOCUMENT_ROOT"]."/arquivos/";
if(is_dir($pasta))
{
$diretorio = dir($pasta);
while($arquivo = $diretorio->read())
{
if(($arquivo != '.') && ($arquivo != '..'))
{
unlink($pasta.$arquivo);
echo 'Arquivo '.$arquivo.' foi apagado com sucesso. <br />';
}
}
$diretorio->close();
}
else
{
echo 'A pasta não existe.';
}
?>