Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Convert strings to lower case in PHP
SUBMITTED BY:
Guest
DATE:
Nov. 20, 2013, 5:01 p.m.
FORMAT:
PHP
SIZE:
182 Bytes
Raw
Download
Tweet
HITS:
879
Go to comments
Report
<?php
# Convert strings to lowercase PHP
$str
=
"She Sells Sea shELLs"
;
$str
=
strtolower
(
$str
);
echo
$str
;
// Prints she sells sea shells
?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus