Kyle Tse

Results 105 comments of Kyle Tse

This is the best ui. Please keep working.,

I have tried [DomCrawler](https://github.com/symfony/dom-crawler), but it is fine without any problem when encoding Utf-8. Code: ``` use Symfony\Component\DomCrawler\Crawler; $html =

I am trying to fix this problem. https://github.com/wasinger/htmlpagedom/pull/19

But it works with: ``` $c = new HtmlPageCrawler('Paragraph 1 Paragraph 2Paragraph 3'); $c->filter('p')->first()->each(function($element) { $element->replaceWith('ff'); }); echo $c->saveHTML(); ``` Result: ``` ff Paragraph 2 Paragraph 3 ```

Error occurs in the following code: ``` $c = new HtmlPageCrawler('Paragraph 1 Paragraph 2Paragraph 3'); $c->filter('p')->first()->each(function($element) { $element->replaceWith('ff'); }); $c->filter('p')->first()->each(function($element) { $element->replaceWith('dd'); }); echo $c->saveHTML(); ``` Result: ``` PHP Fatal...

I finally gave up this project and wrote my own html dom parse. But I am new on starting up a open source project.

@kukungkung setting curlopt is just try to request with encoding `utf-8`, you have to decode the utf8 yourself. and the response may not follow your encoding. Also, mostly site are...

any updates about trueskill 2? wondering if it is in progress.

I have the same situation. And two different promises (React & Guzzle) are using at the same time makes things messed up. Any suggestions?

yes, but I have to input null for that argument. but its common for other Promise makers design that just resolving with null by default. In most cases, we just...