laruence / php-lua

This extension embeds the lua interpreter and offers an OO-API to lua variables and functions.
http://pecl.php.net/package/lua
Other
149 stars 50 forks source link

Integer support #51

Open flysion opened 2 years ago

flysion commented 2 years ago

在新版本的lua中已经可以区分integer和double了,这就可以解决扩展统一把lua的number类型转换成php的double的问题

$lua->eval("a=2");
// old
gettype($lua->a); // double
// new
gettype($lua->a); // integer