一个变量中的两个变量值是可能的吗?
two variables values in one variable is possible?
我的代码:
$url = "http://www.google.com/test";
$parseurl = parse_url($url);
$explode = explode('.', $parseurl['host']);
$arrayreverse = array_reverse($explode);
foreach(array_values($arrayreverse) as $keyvalue) {
$result[] = $keyvalue;
}
$implode = implode('.', $result);
...
我有兴趣在 $implode
结果的一个变量中获取值,如果将路径设置为 $parseurl
的结果...我该怎么做?
编辑:
我想要 $implode + and(if isset $parseurl['path'])
的值;在 1 个变量中,但我不知道如何将它们联合起来。
这是你想要的吗?
$newurl = $implode . (isset($parseurl['path']) ? $parseurl['path'] : '');
它使用条件运算符 return 路径或空字符串,并将其连接成 $implode
。
我的代码:
$url = "http://www.google.com/test";
$parseurl = parse_url($url);
$explode = explode('.', $parseurl['host']);
$arrayreverse = array_reverse($explode);
foreach(array_values($arrayreverse) as $keyvalue) {
$result[] = $keyvalue;
}
$implode = implode('.', $result);
...
我有兴趣在 $implode
结果的一个变量中获取值,如果将路径设置为 $parseurl
的结果...我该怎么做?
编辑:
我想要 $implode + and(if isset $parseurl['path'])
的值;在 1 个变量中,但我不知道如何将它们联合起来。
这是你想要的吗?
$newurl = $implode . (isset($parseurl['path']) ? $parseurl['path'] : '');
它使用条件运算符 return 路径或空字符串,并将其连接成 $implode
。