PHP:我怎样才能得到结果“B,C”或“C,B”
Posted
技术标签:
【中文标题】PHP:我怎样才能得到结果“B,C”或“C,B”【英文标题】:PHP : How can i get the result "B,C" or "C,B" 【发布时间】:2022-01-19 11:07:39 【问题描述】:大家好,帮我解决这个问题,先谢谢了
class CategoryTree
public function addCategory(string $category, string $parent=null) : void
public function getChildren(string $parent) : array
return [];
$c = new CategoryTree;
$c->addCategory('A', null);
$c->addCategory('B', 'A');
$c->addCategory('C', 'A');
echo implode(',', $c->getChildren('A'));
结果应该是“B,C”或“C,B”。
【问题讨论】:
【参考方案1】:您可以使用以下内容(未测试):
将带有addCategory()
的类别存储在数组$categories
中,以便您可以使用getChildren()
检索它们。
<?php
class CategoryTree
private $categories = [];
public function addCategory(string $category, string $parent = null): void
$this->categories[$parent][] = $category;
public function getChildren(string $parent): array
return $this->categories[$parent];
$c = new CategoryTree;
$c->addCategory('A', null);
$c->addCategory('B', 'A');
$c->addCategory('C', 'A');
echo implode(',', $c->getChildren('A'));
//Result should be "B,C" or "C,B"
看in action
【讨论】:
谢谢@berend 不客气!以上是关于PHP:我怎样才能得到结果“B,C”或“C,B”的主要内容,如果未能解决你的问题,请参考以下文章
我怎样才能只得到 ZRANGEBYSCORE 的第一个结果?