I have the following code in my index.php:
<?php
$files = array();
$files = glob('download/*.iso');
$file = $files[count($files) - 1];
$strlen ( string $file ) : int /* length of $file */
$filelen = $strlen -9 /* length of unwanted characters - "download/" */
$filename = /* how do I get the filename starting at the 10th position */
?>
<div class="container">
<div class="divL">
<h3>Get the latest version of FoxClone iso</h3>
<a href="<?php echo "/{$file}";?>"><img src="images/button_get-the-app.png" alt="" width="200" height="60"></a>
I'd like to replace "Get the latest version of FoxClone iso" in the next to last line with "Get Foxclone "<?php echo "/{$filename}";?>". How do I extract just the file name from $file? I know that I have to:
1. get the length of $file
2. subtract the number of unwanted character to determine the start character (In this case, start at 10th character)
3. and extract everything from the 10th character to length of $file.
Step 3 is where I just don't know how to accomplish the task. I'd appreciate some help on this.
Thanks in advance,
Larry