I was wondering what you'd do if you wanted to link to a directory index file if it existed?
So far what I have is this
$filename = './../season/6/index.php';
if (file_exists($filename)) {
   echo '<div id="lesson"> 
<a href="./../Season/6/index.php">season 6</a>
</div>';
} else {
   echo "";
}
However, what I want now is something like this
$lesson="5";
$lesson++; // (or someway to increase it) 
$filename = './../season/$lesson/index.php';
if (file_exists($filename)) {
   echo '
<a href="./../Season/$lesson/index.php">season $lesson</a>
开发者_开发知识库';
} else {
   echo "";
}
however, I know that php won't allow ALL Those backslashes in that echo or apostrophe. How can I compensate? Should I use String concatenation?
As an example:
<?php
foreach(range(1,10) as $lesson){
$filename = "./../season/$lesson/index.php";
        echo $filename;
}
?>
A live demo:
http://www.ideone.com/pemRv
Essentially two things here:
1) Use double quotes to have variable interpolation.
2) Just have $lesson be an integer, so you can increment the value.
Variable interpolation only occurs in double quoted strings, you are using single quoted.
Also, your else { ... } is unnecessary.
However, it sounds like this method could be improved. What upper bound will you go to before you stop checking? This will be a lot of unnecessary overhead.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论