This is a continuation of my series to help you learn PHP specifically for WordPress. I caution you that this is not a full PHP course. It is the basic information you need to know to start working with PHP in WordPress right away. Please be sure to read my other parts in this series here.
Variables
Variables are “containers” for storing information. Kind of like algebra, they can hold unknowns.
x=5 y=6 z=x+y
A variable starts with the $ sign, followed by the name of the variable. It’s best to give the variable a descriptive name to make it easier for yourself and others to understand, but keep in mind that the name must begin with a letter or an underscore and can only contain alpha-numeric characters and underscores. It cannot contain spaces.
A variable is created simply by assigning a value to it like this:
$sample1=”Hello world!”;
$number_sample=5;
You’ll notice that a variable can hold either text or number. If you are using text it is called a String Variable and you need to put quotes around the value.
String Variables
So, using the vocabulary echo we learned in the last tutorial, we will assign a value to a variable and then output that value on our web page.
So the above will simply output the words Hello world! on our web page.
Why would you want to use a PHP statement like this instead of just writing Hello world! in HTML? Well, it’s because PHP allows us to manipulate that variable in many ways. One way is by getting the value of the variables through a user input.
Another way it to put two variables together. We can do it by using the period like this:
The output of the code above will be: Hello world! What a nice day! Note that I have used the period twice because I wanted to add a space between the two strings of text. The empty parentheses you see give me that space.
So now we know that a variable can equal something. We can put string variables together with a period. We can also use other operators like addition, subtraction, and division with the appropriate math symbols. But rather than just manipulating variables, sometimes we will need to compare variables and make something happen depending on the answer. There are many ways to do this, but since this is a basic tutorial, we will just discuss the basic ones, like greater than, less than, equal to, and not equal to, which are represented with these symbols respectively >, <, ==, !=. We will use these in the next tutorial, Conditional Statements. If you want to know more, there is a complete list here: http://www.w3schools.com/php/php_operators.asp
PHP Arrays
An array stores multiple values in one single variable name. You can access the individual values by referring to an index number. So, for example, instead of listing a bunch of variables like this:
$cars1="Volvo"; $cars2="BMW"; $cars3="Toyota";
With an array, we can list them all together like this:
$cars=array("Volvo","BMW","Toyota");
As I said, they will be indexed automatically, so in other words, each value is given a number beginning with 0 for the first item. So when you write the above, the server will read:
$cars[0]="Volvo"; $cars[1]="BMW"; $cars[2]="Toyota";
This not seem like a big time saver when you only have 3 values, but imagine having 300 or more? And trust me, this will be useful.
So, using this plus the string we learned in the last tutorial, we can create an array and then have it print those values like this:
Which will output this:
I like Volvo, BMW and Toyota.
Be sure to read all my PHP for WordPress tutorials here: https://wpdecoder.com/topics/PHP-for-Wordpress
Ulises says
Hi Laura, please continue with this tutorials, you nailed it with this couple of tutorials specifically oriented on PHP for WP. I like your teaching style, you have a gift for deconstructing and filtering what really matters.
Thanks again.
Laura Hartwig says
Thanks so much for your nice comment! I will continue them. I’ve got a couple more in the works already. Be sure to sign up for my newsletter so you won’t miss them!