【发布时间】:2016-03-07 00:38:20
【问题描述】:
我知道这个问题很愚蠢。我已经尝试找到这个错误几个小时了。我仍然无法弄清楚我错过了什么......
@extends('app')
@section('content')
<div class="container">
<div class="span7 offset1">
<iframe width="600" height="315" src="//www.youtube.com/embed/<?php echo $_POST['id']; ?>" frameborder="0" allowfullscreen></iframe>
</div>
<div id="tags">
<?php
foreach(json_decode($_POST['data']) as $value) {?>
<h3> <?php echo $value->Name;?> :
<small>
<?php foreach( $value->Times as $times ) {
echo gmdate("i:s", $times).' ' ;
}?>
</small>
</h3>
<br>
<?php}?>
</div>
</div>
@endsection
错误信息
FatalErrorException in f414a2a722d122735d2198f9a7f0ae6a line 26:
syntax error, unexpected end of file
【问题讨论】:
-
能不能加个错误...
-
给你的括号一些喘息的空间:
<?php}?> -
@Rizier123 谢谢!!!
-
我没有找到这篇文章。感谢您的通知。