Re: Re: array or list of objects of different types

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





var_dump( array( true , 12 , "php already does this" ) );

array(3) {
   [0]=>  bool(true)
   [1]=>  int(12)
   [2]=>  string(21) "php already does this"
}

:)


Yeah. But this feature of PHP is a boon if used carefully and a curse if careless. You can get AMAZING results if you're not careful to check the data types ;)


And that's why language like C# and java supports <> to restrict the type of data a collection can hold.
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux