Write a PHP program to create a new string from two given string one is shorter and another is longer

  • برمجة بي اتش بي

Write a PHP program to create a new string from two given string one is shorter and another is longer. The format of the new string will be long string + short string + long string.

الأجوبة

<?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
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...