I pass an array to a view, which has code like this:
<?php foreach ($this->results as $r): ?>
<div>
<?php echo $this->url(array('id' => $this->escape($r[RecordID]) ....
Suppose I want to use object notation:
<?php foreach ($this->results as $r): ?>
<div>
<?php echo $this->url(array('id' => $this->escape($r->RecordID) ....
Is this possible?
$risobject, then it is possible. If it is anarray, than it is not.