| name | language | licence |
|---|---|---|
| HTML : Groupe d'otption dans un select | HTML | Other |
| TYPOSCRIPT : Typoscript mega exemple : TMENU, MULTILANGUE, TEXT, CONDITIONS , ATTRIBUT TITLE, FIL D' | Other | Other |
| CodeCollector.net API | Text | CC by-nc 2.5 |
| Escaping a URL in an Objective-C String | Objective-C | Other |
| CapitalizeLastName | PHP | Other |
| BAPI para contabilizar solo cuentas mayores en cualquier ledger | Other | Other |
| ExtraContent Sample - RapidBlog | HTML | Other |
| BAPI para contabilizar en cuentas mayor, cliente, o acreedor | Other | Other |
< 1 2 3 4 5 >
language: PHP
licence: Other
CapitalizeLastName
options: view full snippet • send to code collector
<?php
function CapitalizeLastName($name) {
$name = strtolower($name);
$name = join("'", array_map('ucwords', explode("'", $name)));
$name = join("-", array_map('ucwords', explode("-", $name)));
$name = join("Mac", array_map('ucwords', explode("Mac", $name)));
$name = join("Mc", array_map('ucwords', explode("Mc", $name)));
return $name;
}
?>



library
html (48)