Write a PHP program to create a new string without the first and last character of a given string of length atleast two

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

Write a PHP program to create a new string without the first and last character of a given string of length atleast two

الأجوبة

<?php
function test($s1)
{ 
   return substr(substr($s1, 1, strlen($s1) - 1), 0, strlen($s1) - 2);
}

echo test("Hello")."\n";
echo test("Hi")."\n";
echo test("Python")."\n";

Sample Output:

ell

ytho
هل كان المحتوى مفيد؟

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

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