Skip to content

Instantly share code, notes, and snippets.

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