I've seen this used a lot, especially with SimpleXML.
Is this:
$row->unixtime
simply the same as doing this???
$row[unixtime]
What is this called, why/how should it be used?
|
|
I've seen this used a lot, especially with SimpleXML. Is this:
simply the same as doing this???
What is this called, why/how should it be used?
|
|||
|
|
|
Object Oriented Programming with PHP
$row is an object. unixtime is a property of that object.
$row is an (associate) array. unixtime is a key in that array. Asking 'What Objects are' is a bit vague.
Getting started with OOP is not a trivial task. It takes a good while to learn the syntax and nuances, some more time to understand the advantages, and years(arguably) to actually use it effectively. |
|||
|
|
|
|
It's totally different. The first one, Example:
The second one, is to get the key
You can easily convert between objects and arrays by using the
Off-topic: I actually missed out the unix epoch time 1234567890 in February. |
|||
|
|
|
|
No, they're not the same. It's about object oriented programming.
|
|||
|
|
|
|
To make your answer short and sweet...
This is an object
This is an array |
||
|
|
|
|
It's likely another idiom pulled from the C language, which is actually what PHP is written in. Many of PHP's features, syntax, and operators, and even many of PHP's native functions, have their roots in C. |
|||
|
|