Add page title

This commit is contained in:
Goran Rakic
2012-07-16 20:25:58 +02:00
parent 0e59502501
commit 13bfa8f88d

View File

@@ -3,6 +3,8 @@ layout: page
title: Functional Programming in PHP
---
# Functional Programming in PHP
PHP supports first-class function, meaning that a function can be assigned to a variable. Both user defined and built-in
functions can be referenced by a variable and invoked dynamically. Functions can be passed as arguments to other
functions (feature called Higher-order functions) and function can return other functions.