Home > Backend Development > PHP Tutorial > php unset array does not work

php unset array does not work

WBOY
Release: 2016-08-20 09:03:59
Original
2613 people have browsed it

<code>$exchangeName= array (
    9000 =>
        array (
            0 => '正常充值1',
            1 => 4.99,
        ),
    9003 =>
        array (
            0 => '正常充值4',
            1 => 49.99,
        ),
    9152 =>
        array (
            0 => '一次性促销4',
            1 => 99.99,
        ),);
$qin = var_export($exchangeName);
//echo $qin;

$contents="444,name,0.99|555,name,9.99";
$packageArray=explode('|', $contents);

unset($exchangeName);
foreach ($packageArray as $packageValue){
 $temp=explode(',', $packageValue);
 $exchangeName[$temp[0]]=array($temp[1],$temp[2]);
}

echo var_export($exchangeName,true);</code>
Copy after login
Copy after login

Reply content:

<code>$exchangeName= array (
    9000 =>
        array (
            0 => '正常充值1',
            1 => 4.99,
        ),
    9003 =>
        array (
            0 => '正常充值4',
            1 => 49.99,
        ),
    9152 =>
        array (
            0 => '一次性促销4',
            1 => 99.99,
        ),);
$qin = var_export($exchangeName);
//echo $qin;

$contents="444,name,0.99|555,name,9.99";
$packageArray=explode('|', $contents);

unset($exchangeName);
foreach ($packageArray as $packageValue){
 $temp=explode(',', $packageValue);
 $exchangeName[$temp[0]]=array($temp[1],$temp[2]);
}

echo var_export($exchangeName,true);</code>
Copy after login
Copy after login

unset is to release the specified variable. You definitely can’t unset the two-dimensional array directly! Reference Manual

Didn’t you reassign the values ​​below?
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template