<?php
$my_string = "This STRING has UPPERCASE letters";
$my_string = strtolower($my_string);
echo $my_string;
//Output: this string has uppercase letters
?>
Get Free Sinhala IT Learning Videos Kuppiya.com
<?php
$my_string = "This STRING has UPPERCASE letters";
$my_string = strtolower($my_string);
echo $my_string;
//Output: this string has uppercase letters
?>
<?php
//checkdate($month, $day, $year) - format
$month = 10;
$day = 12;
$year = 2008;
echo 'Valid Date Example: ';
if(checkdate($month, $day, $year))
{
echo 'Date is correct';
}
else
{
echo 'Date is incorrect';
}
echo '<br /><br />';
echo 'Invalid Date Example: ';
//Invalid date
$month = 14; // month is wrong
$day = 12;
$year = 2008;
if(checkdate($month, $day, $year))
{
echo 'Date is correct';
}
else
{
echo 'Date is incorrect';
}
?>
<?php
$array_items = array('item1', 'item2', 'item3');
$string_with_comma = implode(",", $array_items);
echo $string_with_comma; // item1,item2,item13
?>
<?php
$array = array(0 => 'Tom', 1 => 'Kusal', 2 => 'Jerry', 3 => 'Jhonny');
$key = array_search('Tom', $array);
echo $key; // $key = 0;
/* sample
$key = array_search('Kusal', $array); // $key = 1;
$key = array_search('Jerry', $array); // $key = 2;
$key = array_search('Jhonny', $array); // $key = 3;
sample */
?>