gpt4 book ai didi

PHP 在两个文件之间传递变量

转载 作者:行者123 更新时间:2023-12-02 04:48:58 26 4
gpt4 key购买 nike

我有一段代码:

foreach (glob('mov/$context.mov') as $filename){ 
$theData = file_get_contents($filename) or die("Unable to retrieve file data");
}

这是在该 glob 中添加变量的正确方法吗? $上下文

此外,在我的新文件中,我想用 $context 替换一个单词,所以我会这样写

$context = "word"; // so it adds that word to the glob function when the script is included in a different file.

最佳答案

PHP 变量不会插入单引号内。使用双引号或将变量放在引号之外

foreach (glob("mov/$context.mov") as $filename){ 

foreach (glob('mov/'.$context.'.mov') as $filename){ 

如果您在 foreach 之前执行 $context = "word";,则 glob 将查找 mov/word.mov

Reference

关于PHP 在两个文件之间传递变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19228186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com