Re: NULL expected, won't show up ...
- From: "frizzle" <phpfrizzle@xxxxxxxxx>
- Date: 19 Mar 2006 12:42:44 -0800
ColdShine wrote:
frizzle in news:1142679430.087309.144470@xxxxxxxxxxxxxxxxxxxxxxxxxxxx wrote:
Richard Levasseur wrote:
You can also just do == 0
"" == 0
NULL == 0
array() == 0
0 == 0
Coldshine's method is better though. If you require all the data, make
sure all of the parts have data in them.
Thank you both! So in fact it was ok to do my second option.
What i don't understand is the following:
echo '<br>year: '.($article_year? $article_year: 'null');
echo '<br>month: '.($article_month? $article_month: 'null');
echo '<br>article: '.($article_url? $article_url: 'null');
I know the statements, but what does it look for in this case?
Does it detect wether or not e.g. $article_year is set at all?
Sorry for my empty reply...
Anyways: if a variable is not set, casting it to bool (as done by testing
statements) will result in an E_NOTICE and will return false. Casting a 0 or
a null also return false.
--
ColdShine
"Experience is a hard teacher: she gives the test first, the lesson
afterwards." - Vernon Sanders law
ok, thank you!
I have it up and running now, and tested a lot, and it works great.
Thanks.
.
- References:
- NULL expected, won't show up ...
- From: frizzle
- Re: NULL expected, won't show up ...
- From: ColdShine
- Re: NULL expected, won't show up ...
- From: frizzle
- Re: NULL expected, won't show up ...
- From: ColdShine
- Re: NULL expected, won't show up ...
- From: Richard Levasseur
- Re: NULL expected, won't show up ...
- From: frizzle
- Re: NULL expected, won't show up ...
- From: ColdShine
- NULL expected, won't show up ...
- Prev by Date: Re: mysql_connect error
- Next by Date: Re: Hosting Referral
- Previous by thread: Re: NULL expected, won't show up ...
- Next by thread: fopen error with accessing a shared network drive
- Index(es):
Relevant Pages
|