Your search query "linkto:"PhpPhrasebook"" didn't return any results. Please change some terms and refer to HelpOnSearching for more information.
(!) Consider performing a full-text search with your search terms.

Clear message

Comparation of simple tasks in php and python - a guide for php programmers wanting to create python applications

strtolower:

$x=strtolower('Some String');
echo $x

In Python you can do:

x = lower('Some String')
print x

But remember: everything is an object, including every string.

x = 'Some String'.lower()
print x

Unable to edit the page? See the FrontPage for instructions.