Write a PHP program to check whether the first two characters and last two characters of a given string are same
<?php function test($s1) { return substr($s1, 0, 2) == substr($s1, strlen($s1) - 2, 2); } var_dump(test("abab")); var_dump(test("abcdef")); var_dump(test("xyzsderxy"));
Sample Output:
bool(true) bool(false) bool(true)
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