Skip to content

Instantly share code, notes, and snippets.

@mrded
Created July 15, 2014 13:16
Show Gist options
  • Save mrded/bd2d94dd18096c19bc8e to your computer and use it in GitHub Desktop.
Save mrded/bd2d94dd18096c19bc8e to your computer and use it in GitHub Desktop.
PHP: make machine name from string
<?php
$machine_name = preg_replace('@[^a-z0-9-]+@', '-', strtolower($string));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment