Write a PHP program to create a new string of the first half of a given string of even length.
<?php function test($s1) { return substr($s1, 0, strlen($s1) / 2); } echo test("Hello")."\n"; echo test("Hi")."\n";
Sample Output:
He H
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