Skip to content

Instantly share code, notes, and snippets.

@v6ak
Last active August 29, 2015 14:20
Show Gist options
  • Save v6ak/4bceb10503679a897563 to your computer and use it in GitHub Desktop.
Save v6ak/4bceb10503679a897563 to your computer and use it in GitHub Desktop.
<?php
function lacyConnection() {
$conn = null;
return function() use (&$conn) {
if ($conn!==null) {
return $conn;
}else{
$comm = connect(…);
return $comm;
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment