/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /* Convert string to underscore_name Converts "My House" to "my_house". Converts " Peter's nice car " to "peters_nice_car". Converts "_88" to "88" */ function string_to_underscore_name($string) { return $string; } ?>