我在 PHP 中有两个字符串:
$Str1 = "/welcome/files/birthday.php?business_id=0";
$Str2 = "/welcome/index.php?page=birthday";
我必须用一个函数从这两个字符串中获取单词生日。我需要一个在两种情况下都返回生日的函数。
例子
function getBaseWord($word){
...
return $base_word;
}
getBaseWord('/welcome/files/birthday.php?business_id=0');
getBaseWord('/welcome/index.php?page=birthday');
两个函数调用都应该返回“生日”。
我该怎么做。