这里的问题是,我有一个包含17个元素的数组。我想得到的元素,我需要一定的时间和删除他们永久从数组。
密码是这样的:
$name = $post['name'];
$email = $post['email'];
$address = $post['address'];
$telephone = $post['telephone'];
$country = $post['country'];
unset($post['name']);
unset($post['email']);
unset($post['address']);
unset($post['telephone']);
unset($post['country']);
是的,代码是丑陋的,没有必要抨击。我如何使这看起来更好?