我有下面的代码应该将文件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行
我确信这很容易解决。
答案 0 :(得分:5)
你必须写这个
$myFolderP = $myFolder."/"."index.php";
而不是这个
$myFolderP = &myFolder."/"."index.php";