From the following code:

<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

How do I create an array using phpQuery -

array(
  'Coffee',
  'Tea',
  'Milk'
);

Here's my first attempt, it is very ugly

    $doc = phpQuery::newDocumentHTML(...);
    $img = $doc->find('ol');
    $list = array();
    function attrsrc($i, $v){
        global $list;
        $list[] =  phpQuery::pq($v)->text();
    }
    phpQuery::each($img, 'attrsrc',  new CallbackParam, new CallbackParam);
    print_r($list);
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Try this:

include 'phpQuery.php';

$string = '<ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>';
$content = phpQuery::newDocument($string)->find('ol li');

$drinks = array();

foreach ($content as $li) {
     $drinks[] = pq($li)->text();
}

print_r($drinks);
link|improve this answer
that worked well. thanks – Jason Feb 3 '11 at 18:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.