我使用Flash和PHP創建JPG。我的本地主機服務器上的Flash和PHP按預期工作。當我上傳到服務器,我得到以下錯誤:php錯誤<b>解析錯誤</b>:語法錯誤,意外':'在
Parse error: syntax error, unexpected ':' in /home/carlosrg/public_html/mysubdomain/image.php on line 6
,代碼:
<?PHP
date_default_timezone_set('America/Los_Angeles');
$targetFilename = date(‘YmdHis’).’_’.mt_rand().’.jpg’;
$serverpath = ‘http://www.mysubdomain.myserver.com';
$directoryPath = ‘/newimagesfolder/‘;
$target_path = $_SERVER['DOCUMENT_ROOT'].$directoryPath.$targetFilename;
if (move_uploaded_file($_FILES[ 'userfile' ][ 'tmp_name' ], $target_path))
{
echo $serverpath.$directoryPath.$targetFilename;
}
else
{
echo "error";
}
?>
預先感謝您的寶貴時間。
你似乎使用奇撇號。你需要使用''',而不是'''那些來自Word的? – andrewsi
捲曲報價; *美麗*但**致命**。 –