简体   繁体   中英

PHP include dynamically generated filename?

while($x<=$num_of_cpkgs){
  $cpkg_navtray = '\'' . $cpkg_array[$x] . '.html\'';
  include $cpkg_navtray;
  $x++;
}

I'm getting an error when I try this ... it works when I manually include the same value however ... for example, if $cpkg_navtray = 'test.html' , I'm getting an error; however, when I directly include 'test.html' like include 'test.html'; , it works. Why?

您不需要在文件名变量中加上引号-

$cpkg_navtray = $cpkg_array[$x] . '.html';

Looking same Question but tag and desire different: Jut do these, just a simple concatenate.

while($x<=$num_of_cpkgs){
  $cpkg_navtray = $cpkg_array[$x].'.html';
  include $cpkg_navtray;
  $x++;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM