Jump to content

debugging of data read with phpQuery


mstdmstdd

Recommended Posts

  Hello,
Can you advice some tools(php7/laravel5) for debugging/review of data read with phpQuery?
I mean when I need to get data-attribute of H2 tag I write:

$pq = pq($nextContainerDivItem);
$nextTitle= $pq->find('h2.s-access-title');
echo '<pre>$nextTitle::</pre>';
dump($nextTitle);
$next_title= !empty($nextTitle->attr('data-attribute') ) ? $nextTitle->attr('data-attribute') : '';

I googled the right decision and now in $next_title valid value, but debugging the output
https://imgur.com/a/bwEKS

is not really usefull, as I could not review the value in dumping: I suppose to find it in path elements->attributes,
but as you see at printscreen.

If there is better of dumping ? If possible with options to show some nodes. Say not empty or specifile in path, as if ["elements->attributes"]
specified show it opened.

Also when I write wrong path/class I have some output like in printscreen above.
I would like in some way to show if the node was found or not?
If there is way to make it?
Which debugging tools do you use with phpQuery requests ?

Thanks!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.