课程: PHP for WordPress (2020)

今天就学习课程吧!

今天就开通帐号,24,700 门业界名师课程任您挑!

Solution: Loop through an array of information

Solution: Loop through an array of information - PHP教程

课程: PHP for WordPress (2020)

Solution: Loop through an array of information

(upbeat music) - [Instructor] All right, let's go through the solution to the last challenge. You could see we have the array on screen here, so let's start. Of course, we want to use a foreach loop for this task because we have an associative array. So I'm going to say foreach tmnt as, and then we have the turtle's name and a list of attributes. So I'm going to say turtle, arrow, and then I'll say atts for the attributes. So the first thing we want to do is print the turtle's name in bold. Since we can use HTML embedded directly into our PHP, I'm going to say echo p, b for bold, then I'll say turtle. Then I'll say colon and b and then a space. The space is important. Remember that we need to explicitly state any spaces we want in our PHP code. Now we want a comma-separated list of the attributes. So we'll actually need another foreach loop here. Foreach atts as, I'll just say attr for attribute, and then we'll…

内容