Как сделать слова в кейвордах с большой буквы.

August 14, 2009

Иногда возникает необходимость сделать все слова в файле с большой буквы. PHP скрипт, который делает это:

<?
$keywords = file(’keywords.txt’);
$count = count($keywords);
for($x=0;$x<=$count;$x++)
{
echo ucwords($keywords[$x]).’<br>’;
}
?>

 

Было
buy cialis
buy viagra online
buy cheap tramadol

Стало
Buy Cialis
Buy Viagra Online
Buy Cheap Tramadol

Так же это можно сделать в MS Word нажав Shift+F3 :)

Comments »

The URI to TrackBack this entry is: http://intrex.blogsome.com/2009/08/14/p84/trackback/

No comments yet.

RSS feed for comments on this post.

Leave a comment

Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>



Anti-spam measure: please retype the above text into the box provided.