Skip to content

Instantly share code, notes, and snippets.

View karlingen's full-sized avatar
🏂
\o/

Karl Metum karlingen

🏂
\o/
View GitHub Profile
<?php
/**
* I18N class for translating text to any language
* Uses YAML files
*
* Usage: I18N::t("user.name") # => "Karl Metum"
* In the above example "name" is nested under "user"
*
* Make sure that the following constants are set in
* your configuration file:
@karlingen
karlingen / gist:5633052
Created May 23, 2013 06:13
SSN swedish validation
<?php
/**
* Checks if the given number is a valid SSN (in Sweden)
*/
protected function checkSSNValidity($ssn)
{
if (strlen($ssn) != 10)
{
return false;