在PHP中向Cookie添加更多数据

时间:2019-06-06 07:00:15

标签: php cookies

我有一个cookie,并在其中存储了page1的多个选中的复选框值。现在,我想将更多选中的复选框值添加到page2然后page3的cookie中,依此类推(我在代码中使用了分页)。如何在PHP中做到这一点?

<?php
$cookiename = "emp";
if (isset($_GET['check_list']) ) {
    setcookie($cookiename , implode(',' , $_GET['check_list']) , 
time()+(86400/86400*30) );
}
?>
//to print the values
<?php
if (isset($_COOKIE[$cookiename]) ) {
    print_r($_COOKIE);
}
?>

1 个答案:

答案 0 :(得分:0)

也许以这种方式:

import matplotlib.pyplot as plt
plt.figure(1, figsize=(4, 6)) # Figure size in inches (size_x, size_y)
plt.subplot(211)
# plt.plot_date(df['Condition'],df['Date'], tz=None, xdate=True, ydate=False)
plt.title('Scatter plot')
plt.xlabel('Condition')
plt.ylabel('Date')
plt.show()

使用unserialize,您可以毫无问题地将多维数组存储到cookie中。