Is it possible to add a feature that will return the found selectors in an
array?
eg.
--html--
<div>This is one</div>
<div>This is two</div>
<div>This is three</div>
--php--
print_r(pq("div")->html());
--suggested output--
Array
(
[0] => This is one
[1] => This is two
[2] => This is three
)
--current output--
This is oneThis is twoThis is three
Original issue reported on code.google.com by magnus.esterhuizen@gmail.com on 30 Dec 2010 at 1:14
Original issue reported on code.google.com by
magnus.esterhuizen@gmail.com
on 30 Dec 2010 at 1:14