我想在结果中添加+,因此它显示为“+ alrajhi12245”
$url = http://mydomain.com/alrajhi12245/invoice;
$parse = parse_url($url);
$explode = explode('/', $parse['path']);
$md = $explode[1];
我该怎么办?
答案 0 :(得分:2)
尝试以下方法:
$md = '+' . trim($explode[1]);