1. PHP / Говнокод #12791

    +158

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    public static function checkWriteToTorrentPath($path)
    {
    	if (file_put_contents($path.'file.txt', ' '))
    	{
    		unlink($path.'file.txt');
    		return TRUE;
    	}
    	else
    		return FALSE;
    }

    is_writable ? Не, не слышал!
    https://github.com/ElizarovEugene/TorrentMonitor/blob/master/class/System.class.php#L48 Эпик!

    Запостил: DrFreez, 24 Марта 2013

    Комментарии (3) RSS

    • Действительно, собачку забыл.
      Ответить
    • Мне кажется, ответ где-то тут: http://www.php.net/manual/ru/function.clearstatcache.php
      Ответить
    • Напомнило:
      if ( unlink($file) ) return 'Файл существовал';
      else return false;
      Ответить

    Добавить комментарий