简体   繁体   中英

How do I store this array to multiple variables?

Hi how do I store this array to two different variables instead of echo??

$countries = array();
foreach ($my_data as $node)
{
    foreach($node->getElementsByTagName('a') as $href)
    {
        preg_match('/([0-9\.\%]+)/',$node->nodeValue, $match);
        $countries[trim($href->nodeValue)] = $match[0]; 
    }
}    

foreach ($countries as $country => $percent) echo str_replace("Â","",(strip_tags($country))) . ' - ' . str_replace("Â","",(strip_tags($percent)));

This will output

USA - 75%
UK - 65%
AU - 56%
UAE - 52%

and so on What I am looking is I need this array to store in multiple variable for example

$datac = USA,UK,AU,UAE

$datap = 75%,65%,56%,52%

like that any idea?

$datac = array();
$datap = array();

foreach($countries as $country => $percent) {
    $datac[] = str_replace("Â","",(strip_tags($country)));
    $datap[] = str_replace("Â","",(strip_tags($percent)));
}

If you want them as strings, you can just do:

$datac = implode(',', $datac);
$datap = implode(',', $datap);

Reference: implode

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM