From 13bfa8f88df9e0d6206705ff6eeee02c77e487a1 Mon Sep 17 00:00:00 2001 From: Goran Rakic Date: Mon, 16 Jul 2012 20:25:58 +0200 Subject: [PATCH] Add page title --- pages/Functional-Programming.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/Functional-Programming.md b/pages/Functional-Programming.md index 0823890..99d9660 100644 --- a/pages/Functional-Programming.md +++ b/pages/Functional-Programming.md @@ -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.