我学习PHP但它不起作用。你们知道我的代码有什么问题吗? http://h51116rm.informatica-laz.nl/PHP/Opdracht_182.php。这是我的域名。这句话是荷兰语,所以不用担心。数组中的句子需要弹出页面。
<?php
$omwisselen = array("Peter ","is ","de ","broer ","van ","Hans ");
for ($i=0; $i<count($omwisselen); i++) {
echo $omwisselen[$i];
}
?>
答案 0 :(得分:1)
将i ++更改为$ i ++并检查
protected override void Seed(ApplicationDbContext context)
{
// This method will be called after migrating to the latest version.
// You can use the DbSet<T>.AddOrUpdate() helper extension method
// to avoid creating duplicate seed data. E.g.
//add roles
context.Roles.AddOrUpdate(p => p.Id,
new IdentityRole()
{
Id = EnumUtility<AspNetRoles>.GetAppRoleId(AspNetRoles.None),
Name = AspNetRoles.None.ToString()
});
}
答案 1 :(得分:0)
在for循环中,你忘了$。 你写了i ++而不是$ i ++。
我建议使用netbeans ..我没有注意到这个错误,直到我把它粘贴在netbeans中..