Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前的代码是:
${'wddx_'.$i}
有没有办法可以使 $i 变量位于中间有点像:
${'wddx'.$i.'_0'}
我必须做什么才能让它工作?
我还需要在中间有变量。
你应该有的代码
$wddx[$i]
让它在中间
$wddx[$i][0]
请学习使用数组
我现在已经修复了我想要做的事情,我只需要我们:
${'wddx' . $z .'_0'}
&
${'wddx' . $z .'_1'}
这现在已经解决了我想要做的事情。我在其中使用了这些变量:
for ($z=0; $z<=500; $z++){ }
无论如何,感谢您的帮助,它非常有用,当我在不久的将来进行更多编码时,我会记得使用具有更好命名约定的数组。