私はこのループを持っています
foreach ($unserialized as $key => $value) {
$foo = <<<EOT
<div class='krudItem' id='xxx'><form class='aj' name='itemForm' method='post'
action=''><section><label>Slider Title</label><input type='hidden'
name='sliderKey' value=$key/><input type='text' name='sliderTitle' value='$value
['slidertitle']'/></section><section> <label>Slider Location</label>
<input type='text'
name=$value['sliderlocation']value='ipsum'/></section><section><label>Slider
Description</label><textarea name='sliderDescription'>$value
['sliderdescription']</textarea></section><button name='saveNew' class='saveNew'
value='save'>save</button><button name='newCancel' value='cancel'
class='deleteNew'>cancel</button></form></div>
EOT;
echo $foo;
しかし、私はそれを実行するたびに、私は得る
解析エラー: 構文エラー、予期しない '' (T_ENCAPSED_AND_WHITESPACE)、
http://us2.php.net/tokensについて php が言っていることを読んでいて、他のすべての可能な解決策を試しましたが、エラーが解決しません。いくつかの空白がありますが、それらをうまく処理する方法がわかりません。