Jef*_*son 4 php codeigniter ternary-operator
出于某种原因,我的三元运算符赋值不适用于我的数组的第二部分.有谁看到我做错了什么?它应该只看是否有永久链接字段的值,如果没有,则插入link_url数组.
function getSiteMap()
{
$this->db->select('site_menu_structures_links.id, site_menu_structures_links.link_name');
$this->db->from('site_menu_structures_links');
$this->db->where('site_menu_structures_links.status_id', 1);
$this->db->where('site_menu_structures_links.is_category', 'Yes');
$this->db->order_by('site_menu_structures_links.sort_order');
$catQuery = $this->db->get();
if ($catQuery->num_rows())
{
foreach ($catQuery->result() as $cats)
{
// Set the Main Category into the array
$testArray[$cats->id] = array(
'id' => $cats->id,
'name' =>$cats->link_name
);
$this->db->select('site_content_pages.permalink, site_menu_structures_links_children.id, site_menu_structures_links_children.link_url, site_menu_structures_links_children.link_name');
$this->db->from('site_menu_structures_links_children');
$this->db->join('site_content_pages', 'site_content_pages.id = site_menu_structures_links_children.site_content_pages_id');
$this->db->where('site_menu_structures_links_id', $cats->id);
$this->db->where('site_menu_structures_links_children.status_id', 1);
$this->db->order_by('site_menu_structures_links_children.sort_order');
$childrenQuery = $this->db->get();
if ($childrenQuery->num_rows())
{
foreach ($childrenQuery->result() as $child)
{
$testArray[$cats->id]['children'][$child->id] = array(
'linke_url' => (empty($child->permalink)) ? $child->link_url : $child->permalink,
'link_name' => $child->link_name,
);
}
}
}
}
return $testArray;
}
Run Code Online (Sandbox Code Playgroud)
编辑:
也不是说社交阵列中应该有3个项目而且它没有说有.我想知道它是否与该连接有关.这是我的输出:
Array
(
[2] => Array
(
[id] => 2
[name] => Roster
[children] => Array
(
[1] => Array
(
[linke_url] =>
[link_name] => Superstars
)
[2] => Array
(
[linke_url] =>
[link_name] => Champions and Contenders
)
[3] => Array
(
[linke_url] =>
[link_name] => Title History
)
)
)
[3] => Array
(
[id] => 3
[name] => Events
[children] => Array
(
[4] => Array
(
[linke_url] =>
[link_name] => Preview Next Event
)
[5] => Array
(
[linke_url] =>
[link_name] => Latest Event Results
)
[6] => Array
(
[linke_url] =>
[link_name] => Event Archives
)
[7] => Array
(
[linke_url] =>
[link_name] => Schedule An Event
)
)
)
[4] => Array
(
[id] => 4
[name] => Media
[children] => Array
(
[8] => Array
(
[linke_url] =>
[link_name] => Photo Gallery
)
)
)
[5] => Array
(
[id] => 5
[name] => Social
)
)
Run Code Online (Sandbox Code Playgroud)
And*_*zak 10
你有:
'linke_url' => (empty($child->permalink)) ? $child->link_url : $child->permalink,
Run Code Online (Sandbox Code Playgroud)
我会假设你的意思'link_url'而不是'linke_url',所以看起来你正在努力做到:
如果$child->permalink为空,则设置'link_url'为$child->link_url,但是,如果$child->permalink不为空,则设置'link_url'为$child->permalink.
我建议使用三元运算符的简写版本?:这是形式:$a = $b ?: $c与$b计算结果相同true,即如果$b有任何值$a = $b,否则$a = $c.为了你:
'link_url' => $child->permalink ?: $child->link_url
Run Code Online (Sandbox Code Playgroud)
如果$child->permalink有值,将使用,否则,$child->link_url将使用值.祝好运!