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

(새 문서: ==PHP== category: PHP <source lang='PHP'> $a = 1; unset($a); </source> ==Python== cateogry: Python <source lang='Python'> </source>)
 
10번째 줄: 10번째 줄:
[[cateogry: Python]]
[[cateogry: Python]]
<source lang='Python'>
<source lang='Python'>
a = 1
del(a)
</source>
</source>

2014년 7월 24일 (목) 12:33 판

1 PHP

$a = 1;
unset($a);

2 Python

cateogry: Python

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