Как получить только определенные значения из пользовательской публичной функции

функция:

public function getData($symbol='', $stat='') {

if (is_array($this->symbol)) {
$symbol = implode("+", $this->symbol); //The Yahoo! API will take multiple symbols
}

if($symbol) $this->_setParam('symbol', $symbol);
if($stat) $this->_setParam('stat', $stat);

$data = $this->_request();

if(!$this->history) {
if ($this->stat === 'all') {
foreach ($data as $item) {

//Add to $return[$symbol] array. Indice 23 is the symbol.
$return[$item[23]] = array(
'name'                      =>  strip_tags($item[20]),
'price'                       =>  strip_tags($item[0]),
'change'                      =>  strip_tags($item[1]),
'volume'                      =>  strip_tags($item[2])

//'avg_daily_volume'            =>  strip_tags($item[3]),
//'stock_exchange'              =>  strip_tags($item[4]),
//'market_cap'                  =>  strip_tags($item[5]),
//'book_value'                  =>  strip_tags($item[6]),
//'ebitda'                      =>  strip_tags($item[7]),
//'dividend_per_share'          =>  strip_tags($item[8]),
//'dividend_yield'              =>  strip_tags($item[9]),
//'earnings_per_share'          =>  strip_tags($item[10]),
//'fiftytwo_week_high'          =>  strip_tags($item[11]),
//'fiftytwo_week_low'           =>  strip_tags($item[12]),
//'fiftyday_moving_avg'         =>  strip_tags($item[13]),
//'twohundredday_moving_avg'    =>  strip_tags($item[14]),
//'price_earnings_ratio'        =>  strip_tags($item[15]),
//'price_earnings_growth_ratio' =>  strip_tags($item[16]),
//'price_sales_ratio'           =>  strip_tags($item[17]),
//'price_book_ratio'            =>  strip_tags($item[18]),
//'short_ratio'                 =>  strip_tags($item[19]),
//'name'                        =>  strip_tags($item[20])
);
}
} else {
foreach ($data as $item)
$return[] = array($this->stat => $item);
}
} elseif(is_array($this->history)) {
$return = $data;
}

return $return;
}

то, что используется на index.php:

<?php $test3 = ($StockMarketAPI2->getData());
print_r($StockMarketAPI2->getData());
?>

выход:

Array
(
[-0.12 - -0.15%] => Array
(
[name] => Alibaba Group Holding Limited A
[price] => 81.17
[change] => -0.12
[volume] => 17911579
)

[-0.10 - -0.20%] => Array
(
[name] => GoPro, Inc.
[price] => 49.98
[change] => -0.10
[volume] => 4560642
)

[+0.53 - +0.10%] => Array
(
[name] => Netflix, Inc.
[price] => 557.03
[change] => +0.53
[volume] => 1272298
)

)

но единственное, что мне нужно, это:

alibaba, 81, -0.12, gopro, 49 …. и так далее …

так,

что мне нужно, это не какая-то форма дерева …

|

| |
/ \ \

как выход в настоящее время. но только 1 строка …

не массив [‘s]’ s (‘s)’ s …. или другие подобные символы …

Как я могу это сделать?

это что-то вроде этого:

print_r ($ StockMarketAPI2-> getData ([$ item] [0]));

1

Решение

Пытаться:

<?php $test3 = ($StockMarketAPI2->getData());
foreach($test3 as $t){
echo "New subarray!";
echo $t[name];
echo $t[price];
echo $t[change];
echo $t[volume];
}
?>

не испытано

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]