DEV Community

Cover image for Intro to PHP - A Powerful and Flexible Programming Language
Alex Merced
Alex Merced

Posted on • Updated on

Intro to PHP - A Powerful and Flexible Programming Language

What is PHP?

PHP is a language that was originally created for server-side code for web applications. One of the coolest parts of PHP is that it was a full programming language and templating tool in one making it a lot of fun to work with for web apps which is why many of the most popular platforms like WordPress and Drupal are created using PHP. WordPress websites make up around 50% of websites on the web so knowing PHP to assist WordPress uses with custom themes and plug-ins is a very marketable skill.

On top of that the PHP language has changed a bit with it's latest versions (I'm running PHP 7.9 as I write this article), now can be run from the command line like a scripting language, has a robust package management tool with Composer, and a really popular and robust web framework in Laravel for creating web servers.

The tales of PHP's demise are greatly exaggerated and there has never been a better time to learn PHP.

Setup

Ideally, for this tutorial, I'll be incorporating new PHP features so updating to or installing PHP 7.9 or above would be useful. To test whether the PHP CLI is installed on your computer run the following command in the terminal.

php --version
Enter fullscreen mode Exit fullscreen mode

You should get output like this if the PHP CLI is installed

PHP 7.4.9 (cli) (built: Oct 26 2020 15:17:14) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.9, Copyright (c), by Zend Technologies
Enter fullscreen mode Exit fullscreen mode

Note if you don't want to install PHP right now you can create a REPL with PHP 7.2 on the website REPL.it to try it out online as of the writing of this article

Your First PHP File

in an empty folder create an index.php file.

index.php

<?php

echo "hello \n";

?>
Enter fullscreen mode Exit fullscreen mode
  • run the file with the command php index.php

Things to notice:

  • The usage of php must exist in

    <?php |PHP CODE| ?>

  • each command must end with a semi-colon

  • echo will be our printing command to print text to console

Declaring variables, array and associative arrays

update index.php

refer to comments in code for an explanation of code


<?php

// VARIABLES MUST BE DECLARED WITH $prefix
$myVar = 5;
echo($myVar."\n"); //Notice concatenation is done with a . not a +

// Arrays are declared with []
$myArr = [1,2,3,4,5,6];
echo($myArr[2]."\n");
var_dump($myArr); //var dump is for dumping/printing complex data structures that can't be turned to strings by echo

// Key value pairs are associative arrays also using []
$myAssoc = ["name" => "Alex", "age" => 35];
echo("$myAssoc["name"] \n"); //I can refer to variables by their name with no extra syntax to use interpolation
var_dump($myAssoc)


?>

Enter fullscreen mode Exit fullscreen mode

PHP For Templating

PHP was originally made for templating so let's show you how that works!

update index.php
read comments for explanation of code

<?php
// Inside the <?php |CODE| is treated as PHP, outside is treated as HTML
$title = "This is my title";
$heading = "This is my Heading"
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- USING ECHO I CAN INJECT PHP VARIABLES INTO MY HTML -->
    <title><?php echo($title); ?></title>
</head>
<body>

    <h1><?php echo($heading); ?></h1>

</body>
</html>
Enter fullscreen mode Exit fullscreen mode
  • To run a PHP server to process this into a finalized HTML file, run the following command

    php -S localhost:5000

    this command runs a PHP web server out of the current directory

  • open your browser to localhost:5000 and you'll see our rendered page!

Conclusion

PHP can do so much more but this hopefully gives you a taste for its flexibility. I have videos where I cover more below.

Top comments (2)

Collapse
 
andreidascalu profile image
Andrei Dascalu

<?php |PHP CODE| ?>????

The end tag is a no-no in PHP coding standards and is only necessary for inlining php code in html or other main content types for interpretation but it's a bad practice otherwise.

Collapse
 
keomamallett profile image
Keoma Mallett

Hi. I was running the code, since I decided to learn PHP, and I realised that:

echo("$myAssoc[name] \n");

should be:

echo("$myAssoc["name"] \n");