【发布时间】:2018-09-27 11:11:28
【问题描述】:
我尝试创建一个多维数组 ($list),它应该如下所示:
[
{"uri": "http://www.example.com/1", "traverseCount": "1"},
{"uri": "http://www.example.com/2", "traverseCount": "1"},
{"uri": "http://www.example.com/3", "traverseCount": "1"}
]
但是,我不知道如何从以下数据中最好地实现这一目标。
这两个数据源来自两个If-Else 并尝试为每个案例创建一个多维数组。但是,最后,我想生成一个多维数组,它将两个多维数组与连续有序键结合起来。 (所以,从上面的例子来看,http://www.example.com/1 和 http://www.example.com/2 来自第一个 Else-If 的结果,http://www.example.com/3 来自第二个 Else-If)。棘手的一点是foreach 里面有Else-If。
// Create an empty multidimentional array to accommodate 2 datasets (2 If-Else cases) below:
$traverseCount = 1;
$list = array(
array(),
array()
);
//This is the first data source. Say, it returns 2 URIs when doing the foreach loop:
$match = $graph->resourcesMatching('skos:exactMatch');
if (isset($match) == true && count($match) > 0){
$graphuris = $match[0]->all('skos:exactMatch');
echo '<b>skos:exactMatch Links: </b><br>';
foreach ($graphuris as $uris) {
$counter = 0;
$list[$counter][0] = $uris->__toString();
$list[$counter][1] = $traverseCount;
$counter++;
echo '<a href="'.$uris.'" target="_blank">'.$uris.'</a><br>';
}
}
else {
echo '<p>No skos:exactMatch found</p>';
}
//This is the second data source, whose multidimensional array should be added to the end of the previous multidimensional array
$match2 = $graph->resourcesMatching('rdfs:seeAlso');
if (isset($match2) == true && count($match2) > 0){
$graphuris2 = $match2[0]->all('rdfs:seeAlso');
echo '<b>rdfs:seeAlso Links: </b><br>';
foreach ($graphuris2 as $uris2) {
$counter = 0;
$list[$counter][0] = $uris2->__toString();
$list[$counter][1] = $traverseCount;
$counter++;
echo '<a href="'.$uris2.'" target="_blank">'.$uris2.'</a><br>';
}
}
else{
echo '<p>No rdfs:seeAlso found</p><br>';
}
// $traverseCount is always 1 until here, but it needs to add 1 for the next script to run.
$traverseCount++;
【问题讨论】:
标签: php if-statement multidimensional-array foreach