我想寫一個新行與PHP文件,我收到以下錯誤:爲什麼我在PHP中出現語法錯誤?
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING)
這是我的代碼:
public function add_line($line, $value, $file){
$CI =& get_instance();
$CI->load->helper('file');
foreach($this->existing_langs as $lang){
$lang_contents = read_file($this->lang_path.'/'.$lang.'/'.$file.'_lang.php');
$new_contents = $lang_contents."\n$lang['".$line."'] = '".$value."';"; //Error happens on this line
write_file($this->lang_path.'/'.$lang.'/'.$file.'_lang.php', $new_contents, 'w+');
}
}
我已經指出了行了用php評論發生錯誤。這條線有什麼問題? lang_contents的
實施例:new_contents的
<?php
$lang['1234'] = 'Restaurants';
實施例:
<?php
$lang['1234'] = 'Restaurants';
$lang['1235'] = 'Transportation';
你幾乎已經......但是$ lang應該是文字。 – ShoeLace1291