Advertisement
rexcoder

Untitled

Jan 18th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. /*
  2. PHP filesize() Function
  3. Definition and Usage
  4. The filesize() function returns the size of the specified file.
  5. This function returns the file size in bytes on success or FALSE on failure.
  6. Tips and Notes
  7. Note: The result of this function are cached. Use clearstatcache() to clear the cache.
  8. */
  9. Example
  10. <?php
  11. echo filesize("test.txt");
  12. ?>
  13. //-------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement