Support » Fixing WordPress » Display file size

  • I’m trying to get back the size of an mp3 using the following code

    <?php $values = get_post_custom_values("audioFile"); if($values[0] == "") { echo "Not available"; } else { echo filesize ($values[0]); }
    ?>

    When I want to bring back the file path it is fine. When I try adding the echo filesize to the end of the else statement I get the following error:

    Warning: filesize(): stat failed for

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Display file size’ is closed to new replies.