Write a PHP program to create a new string from two given string one is shorter and another is longer
- برمجة بي اتش بي
- 2021-09-08
- mhanasmh00489829403
الأجوبة
<?php
function test($s1, $s2)
{
return strlen($s1) < strlen($s2) ? $s2 . $s1 . $s2 : $s1 . $s2 . $s1;
}
echo test("Hello", "Hi")."\n";
echo test("JS", "Python")."\n";
Sample Output:
HelloHiHello PythonJSPython
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال