今天就学习课程吧!
今天就开通帐号,24,700 门业界名师课程任您挑!
What are functions?
- [Instructor] Functions play an incredibly important role in PHP, and WordPress. And you've seen them, but we haven't defined them yet. So let's go ahead and do that now. Functions are reusable snippets of code that could be used multiple times. You can imagine functions like variables for lines or blocks of code. And there are two types of functions, the ones that you write yourself, or the ones that come built in to PHP. We will look at both, but first, let's look at the structure of a function. You can see the syntax of a function on the screen here. We have the keyword function, which tells PHP that we are writing a function, then we have the name of the function. Writing the name of a function follows the same conventions as writing the name of a variable, where we have each word in all lowercase and any spaces are replaced with underscores We have parentheses which we'll learn about later, and then we have the…
随堂练习,边学边练
下载课堂讲义。学练结合,紧跟进度,轻松巩固知识。