Re: [PHP] isset empty or ...?

2013-03-31 Thread Александр Меньщиков
http://www.php.net/manual/en/types.comparisons.php
Maybe first table PHP functions comparison (including 'isset' and 'empty') 
could help you.


31.03.2013 в 8:53, John Taylor-Johnston написал(а):
 I'm using

if($mydata-DPRresponselocationaddress1 != )

 is this the same as

if (!isset($mydata-DPRresponselocationaddress))
 http://php.net/manual/en/function.isset.php

 or

if (!empty($mydata-DPRresponselocationaddress))
 http://php.net/manual/en/function.empty.php

 or is there another function I have not learned yet? I don't really get 
 the difference between isset and empty.

 John



-- 
С уважением, Александр Меньщиков

Тел.: +7 921 408-6-777
E-mail: amenshchi...@gmail.com

pgpx34Zv0GMRg.pgp
Description: PGP signature


[PHP] isset empty or ...?

2013-03-30 Thread John Taylor-Johnston

I'm using

if($mydata-DPRresponselocationaddress1 != )

is this the same as

if (!isset($mydata-DPRresponselocationaddress))
http://php.net/manual/en/function.isset.php

or

if (!empty($mydata-DPRresponselocationaddress))
http://php.net/manual/en/function.empty.php

or is there another function I have not learned yet? I don't really get 
the difference between isset and empty.


John

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php