Write a PHP program to create a new string taking 3 characters from the middle of a given string at least 3.
<?php function test($s1) { return substr($s1, (strlen($s1) - 1) / 2 - 1, 3); } echo test("Hello")."\n"; echo test("Python")."\n"; echo test("abc")."\n";
Sample Output:
ell yth abc
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer