Skip to content

Instantly share code, notes, and snippets.

@rtxbc
Created February 10, 2012 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtxbc/1787992 to your computer and use it in GitHub Desktop.
Save rtxbc/1787992 to your computer and use it in GitHub Desktop.
删除数组元素 【php】
<?php
$t = array(1, 3, 4, 5);
var_dump($t);
foreach($t as $k => &$v){
if(1 === $k){
unset($t[$k]);
//unset($v); //这种方法不起作用
}
}
var_dump($t);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment