Zike Huang (Jim)

Results 15 comments of Zike Huang (Jim)

I tested this exclusively on linux box so I did not try windows...

Try installing automate and the issue should be solved.

Oops I mean automake:)

Did php install properly?

Bubble Sort benchmark is now added: https://github.com/jimthunderbird/php-to-c-extension#example-12

I tend to agree with what fezfez said. We might want to stabilize zephir before adding new features. With php parser and abstract syntax tree, we will always be able...

In my tool PHP-To-C-Ext, it now allows using trait to build zephir based php extensions. Under the hood it just merge all functions in the trait into individual classes. https://github.com/jimthunderbird/php-to-c-extension#example-07

It would be nice if zephir support trait as a built-in structure, if not, right now I am still going the method merging ways, developers have options not to use...

Yes, you can always convert your for loop into equivalent while loop. Check out my tool: https://github.com/jimthunderbird/php-to-c-extension#example-04

I tried the solution above, it does not work. The symptom is, the uv.so is recognized correctly in php -m, but when i run a script with a uv_default_loop function...