Advertisement
Guest User

Anuanu

a guest
Nov 21st, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3. $file = 'anu.txt';
  4. $bytes = 200000;
  5. $size = filesize($file);
  6. if($size > $bytes){
  7. unlink($file);
  8. echo 'Succesfuly';
  9. exit;
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement