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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
[[category: Variable]]
[[category: Variable]]
==Bash==
[[category: Bash]]
<syntaxhighlight lang='Bash'>
str=hello
if [ -n "$str" ]; then
echo "Yes"
else
echo "No"
fi
# Yes
unset str
if [ -n "$str" ]; then
echo "Yes"
else
echo "No"
fi
# No
</syntaxhighlight>


==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='PHP'>
<syntaxhighlight lang='PHP'>
$a = 1;
$a = 1;
unset($a);
unset($a);
</source>
echo $a; # Error!
 
</syntaxhighlight>
<syntaxhighlight lang='PHP'>
$a = 1;
unset($a);
var_dump( isset($a) );
# bool(false)
</syntaxhighlight>
==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
a = 1
a = 1
del(a)
del(a)
</source>
</syntaxhighlight>
 
==같이 보기==
*[[isset]]

2020년 11월 2일 (월) 02:33 기준 최신판


1 Bash[ | ]

str=hello
if [ -n "$str" ]; then
	echo "Yes"
else
	echo "No"
fi
# Yes
unset str
if [ -n "$str" ]; then
	echo "Yes"
else
	echo "No"
fi
# No

2 PHP[ | ]

$a = 1;
unset($a);
echo $a; # Error!
$a = 1;
unset($a);
var_dump( isset($a) );
# bool(false)

3 Python[ | ]

a = 1
del(a)

4 같이 보기[ | ]

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