PHP目录路径使用变量

时间:2011-03-12 19:23:15

标签: php variables

我有下面的代码应该将文件index.php复制到目录

$path="/data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/userfiles/";
$fpath="/data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/userfiles/index.php";
$myFolder = $path . $myUser;
$myFolderP = &myFolder."/"."index.php";

我需要将$myFolderP设置为$myFolder/index.php,例如:

/data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/userfiles/will/index.php

我该怎么做?我目前的$myFolderP代码给出了错误:

  

解析错误:语法错误,意外   '。',期待T_PAAMAYIM_NEKUDOTAYIM   在   /data/www/vhosts/themacsplash.com/httpdocs/ClipBoy/code/index.php   第94行

我确信这很容易解决。

1 个答案:

答案 0 :(得分:5)

你必须写这个

$myFolderP = $myFolder."/"."index.php";

而不是这个

$myFolderP = &myFolder."/"."index.php";