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

29번째 줄: 29번째 줄:


==같이 보기==
==같이 보기==
*[[함수 removeAt()]]
*[[new dictionary]]
*[[new dictionary]]
*[[remove]]
*[[remove]]
*[[array_pop]]
*[[array_pop]]
*[[destructor]]
*[[destructor]]

2017년 7월 8일 (토) 20:44 판

  다른 뜻에 대해서는 HTML del 태그 문서를 참조하십시오.
del
unset

1 PHP

$fruits = [ '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 }}