Re:

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, May 8, 2013 at 3:13 PM, Steven Staples <sstaples@xxxxxxxx> wrote:
>
> Why does this feel like a new function/feature for PHP now?
>
> Function acronymize($acronym)
> {
>         // do stuff here now... :S
> }

<?php

function acronymize($text) {
    preg_match_all('/[A-Z]/s',ucwords(strtolower($text)),$matches);
    return implode('',$matches[0]);
}
?>

--
</Daniel P. Brown>
Network Infrastructure Manager
http://www.php.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux