Skip to content

Instantly share code, notes, and snippets.

View 0x6a68's full-sized avatar
🔌
Beam'ing

0x6a68

🔌
Beam'ing
View GitHub Profile
@adaburrows
adaburrows / compose_functions.php
Created April 26, 2011 06:24
Composing functions in PHP
<?php
/**
* Just trying out more functional programming in PHP
* This gist provides some basic utility functions for:
* + Working with functions
* + Working with arrays
*/
// This function allows creating a new function from two functions passed into it
function compose(&$f, &$g) {