2013-02-08 128 views
0

我調試了我的索引文件並過濾掉了我的代碼。原來,如果我使用下面的代碼,該網站將返回一個「意外的文件結束」錯誤。如果我刪除它,該網站將顯示沒有錯誤。所以我不確定我是否缺少任何語法代碼或者是否存在拼寫錯誤。解析錯誤:語法錯誤,文件意外結束 - PHP 5

<?php 

// The Query 
query_posts('cat=9614&posts_per_page=5&tag=review'); 

// The Loop 
while (have_posts()) : the_post(); 
?> 
<li> 
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> 
</li> 
<? 
endwhile; 

// Reset Query 
wp_reset_query(); 

?> 

回答

6

使用<?php,而不是<?

<?php 

// The Query 
query_posts('cat=9614&posts_per_page=5&tag=review'); 

// The Loop 
while (have_posts()) : the_post(); 
?> 
<li> 
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> 
</li> 
<?php // error is here 
endwhile; 

// Reset Query 
wp_reset_query(); 

?> 
+0

謝謝芽!代碼中85-90%的錯誤是小/小/隱藏錯誤。網站現在正在修改代碼。 – user1114968

相關問題