Deniz Polat

Results 11 comments of Deniz Polat

Maybe https://github.com/mpociot/vat-calculator is an alternative to Taxamo.

Hi, you could wrap that line within an try catch block: ```php try{ $company_crawler->filter('a.cp-links-url')->attr('href') } catch(Exception $e) { // I guess its InvalidArgumentException in this case // Node list is...

Didn't test the code but try something like this. ``` $crawler->filter($this->productLinkSelector)->each(function($node) { $url = $node->attr('href'); $text = $node->text(); }); ``` For more information feel free to have a look here:...

You could create a pull requests that changes this.

Not possible with Goutte, since Goutte is just a HTTP client and does not interpret the response. Maybe you can get around that page by using proxy servers?

Sure you can get the html body, get data you need from it and then send another request. But I can't tell you if this will be successful, because I...

I would suggest du searchGoogle for Composer tutorials.

Why not: ``` $crawler->filter('h1')->count(); ```

``` $links = $crawler->filter('a')->each(function($node) { $href = $node->attr('href'); $title = $node->attr('title'); $text = $node->text(); return compact('href', 'title', 'text'); }); ```

What do you mean by description? Can you post an example of that link?