PHP - strlen,substr fungsi mtk dan date


<?php
for ($a=0;$a<=10;$a=$a+1)
{
echo $a.'<br>';
}
echo "5 angka menggunakan ++"."<br>";
for($a=1;$a<=5;$a++)
{
echo $a.'<br>';
}
echo"=========="."</br>";
$b="sance ainul yaqin";
echo $b.'<br>';
echo "index 0 untuk memulai "."<br>";
echo "substr($b,-5) = ".substr($b,-5)."</br>";
echo "substr($b,4) = ".substr($b,4)."</br>";
echo "substr($b,2,5) = ".substr($b,2,5)."</br>";
echo "strtoupper($b) = ".strtoupper($b)."<br>";
echo "strtolower($b) = ".strtolower($b)."<br>";
echo "ucfirst($b) = ".ucfirst($b).'<br>';
echo "ucwords($b) = ".ucwords($b).'<br>';
echo "strlen($b) = ".strlen($b).'<br>';

$c =" pake space awal dan akhir ";
echo "<br>contoh kalimat pake space awal dan akhir <br>";
echo "Ltrim($c)=>menghapus space sebelah kiri = ".ltrim($c)."<br>";
echo "rtrim($c)=>menghapus space sebelah kanan = ".rtrim($c)."<br>";
echo "trim($c)=>menghapus space sebelah kanan dan kiri = ".trim($c)."<br>".'<br>';

echo "Fungsi Matematika ".'<br>';
$d=-16.1;
$f=19.4;
$g=29.9;
echo "abs($d) = ".abs($d).'<br>';
echo "floor($g) untuk membulatkan bawah ataw menghapus dibelakang koma = ".floor($g)."<br>";
echo "ceil($f) untuk membulatkan ke atas = ".ceil($f);
echo "<br><br>"."Fungsi Tanggal ".'<br>';
echo "date(d M Y) = ".date("d M Y");


?>
PHP - strlen,substr fungsi mtk dan date PHP - strlen,substr fungsi mtk dan date Reviewed by Leo on 04:17 Rating: 5

No comments