I found this library, php query, and I wanted to know how I can utilize this jquery:

var source = $('p:not(:has(iframe))').filter(function(){
    return $(this).text().length > 150;})
    .slice(0,1).parent();

It finds the the first p element without an iframe that has text longer than 150 characters and takes its parent, I was wondering how I could do this in a php library. I found phpquery, a php implementation of jquery, but I've been confused on how to properly convert this above script.

link|improve this question
Why don't you use a regular expression? – Arno Moonen Jul 28 '11 at 9:05
oh my god no regex :0 – reiman Jul 28 '11 at 17:01
What's wrong with regex? What's the purpose of the code you're writing? – Arno Moonen Jul 29 '11 at 11:38
feedback

1 Answer

try using http://simplehtmldom.sourceforge.net/manual.htm you can Find tags on an HTML page with selectors just like jQuery. just read the simple manual

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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