Voting

: three minus one?
(Example: nine)

The Note You're Voting On

spidgorny at gmail dot com
8 years ago
<?php
$data
= $likeArray->getArrayCopy();
?>
will NOT be magically called if you cast to array. Although I've expected it.
<?php
$nothing
= (array)$likeArray;
?>
Here, $data != $nothing.

<< Back to user notes page

To Top