"함수 unset()"의 두 판 사이의 차이

30번째 줄: 30번째 줄:
*[[remove]]
*[[remove]]
*[[array_pop]]
*[[array_pop]]
*[[destructor]]

2014년 8월 22일 (금) 14:25 판

del
unset

1 PHP

$fruits = array( 'a'=>'apple', 'b'=>'banana', 'c'=>'cranberry' );
unset($fruits['b']);
print_r($fruits);
// Array
// (
//     [a] => apple
//     [c] => cranberry
// )

2 Python

fruits = { 'a' : 'apple', 'b' : 'banana', 'c': 'cranberry' }
del fruits['b']
print fruits
# {'a': 'apple', 'c': 'cranberry'}

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}