If $string contains abcdefgh , what will the following call return? substr($string, -2, 2);
abc
efgh
gh
None