Q:

Write a PHP program to concat two given string of length atleast 1, after removing their first character

0

Write a PHP program to concat two given string of length atleast 1, after removing their first character.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

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

Sample Output:

elloi
Sython

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now