Skip to content

Instantly share code, notes, and snippets.

@ionas
Last active September 4, 2015 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ionas/2f7eada054b85bd0914a to your computer and use it in GitHub Desktop.
Save ionas/2f7eada054b85bd0914a to your computer and use it in GitHub Desktop.
<?php
$dotCount = count(explode('.', $path)) - 1;
if ($dotCount > 1) {
$path = explode('.', $path);
$path = $path[$dotCount - 1] . '.' . $path[$dotCount];
}
return [$path => $value];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment