2014-01-10 80 views
0

我想設置一個變量等於一個字符串和一個變量。該變量也是一個通過AJAX傳遞的字符串。我知道$data3即將通過,因爲當我將file_put_contents('TestFile.json', $updated);更改爲file_put_contents('TestFile.json', $data3);它的作品。所以AJAX沒有問題。設置變量等於字符串和變量

我知道這是不正確的JSON,我只是測試。 $data3的值是字符串「string」。所以我想要的結果是「測試字符串」。

下面是當前的代碼: <?php $data3 = $_REQUEST ["data3"]; $updated = 'Testing ' + $data3; file_put_contents('TestFile.json', $updated); ?>

+0

'Testing'+ $ data is invalid。你用 。在PHP中連接字符串; – Rottingham

回答

0

您正在試圖用JAVA式操作(+)新增兩個字符串。在PHP中使用。連接。

$data3 = $_REQUEST['data3']; 
$updated = 'Testing ' . $data3; 
file_put_contents('TestFile.json', $updated); 
+0

謝謝。我會盡可能地檢查。 – user3161730