Skip to content

Instantly share code, notes, and snippets.

View leonnguyen's full-sized avatar

Leon Nguyen leonnguyen

  • Việt Nam
View GitHub Profile
@leonnguyen
leonnguyen / PHP Closure Example
Last active December 19, 2015 08:19
PHP Closure example
<?php
header('Content-Type: text/plain;charset=UTF-8'); //utf-8 character with content type has html (e.g Vietnamess)
/**
* Closure example
*
**/
/* #1: a sample closure without param */
$helloworld = function() {echo "hello world !"; };