我在 while 循环中收到以下错误:
解析错误:语法错误,意外的 T_ENCAPSED_AND_WHITESPACE,期待 T_STRING
$index=1;
while ($index <= 100):
fwrite($outfile, $_POST[\'"variable_" . $index\']);
fwrite($outfile, "\r");
$index = $index + 1;
endwhile;
fclose($outfile);
?>
包含 variable_1、variable_2、variable_3 而不会出现语法错误的正确方法是什么?
谢谢。