php

How To Use Functions in PHP — step-by-step Programming tutorial on Progressive Robot

How To Use Functions in PHP

When you find yourself copying and pasting blocks of code to reuse in different sections of your program, you’re ready to write a function. In this tutorial, you will work with all the different pieces of a function: user-defined functions, arguments, parameters, default values, and passing by reference. We’ll discuss scope, which lets you manipulate the specific section of your code that needs to change. Finally we’ll take a look at the various built-in functions provided by PHP.

Read more
What is Composer? — step-by-step Programming tutorial on Progressive Robot

What is Composer?

Composer is an open source dependency management tool for PHP, created primarily to facilitate the distribution and maintenance of PHP packages as individual application components. It has dramatically changed the PHP ecosystem by creating the basis for modern PHP development, with component-based applications and frameworks.

Read more
CHAT