Write a PHP program to create a new string using three copies of the last two character of a given string of length atleast two
- برمجة بي اتش بي
- 2021-09-08
- mhanasmh00489829403
الأجوبة
<?php
function test($s1)
{
$last2 = substr($s1, strlen($s1) - 2);
return $last2 . $last2 . $last2;
}
echo test("Hello")."\n";
echo test("Hi");
Sample Output:
lololo HiHiHi
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال