peachpie icon indicating copy to clipboard operation
peachpie copied to clipboard

PeachPie - the PHP compiler and runtime for .NET and .NET Core

Results 108 peachpie issues
Sort by recently updated
recently updated
newest added

It would be nice to have openssl_sign() support.

**Peachpie:** ``` $chr = chr(225); // 'á' in Latin1 $arr = [$chr => "dummy"]; $key = key($arr); // Should be $chr = chr(225) assert(base64_encode($key) == base64_encode($chr)); //

Currently, properties cannot be typed in the same way as it is in PHP since it wouldn't allow for references to that value. We need a generic value type allowing...

feature

[LDAP extension](https://www.php.net/manual/en/book.ldap.php) is not supported. What would be the steps needed to bring it to PeachPie?

Implements #834 I started to work on a basic implementation on [extension `com_dotnet` ](https://www.php.net/manual/en/book.com.php) **What works:** - Creating [COM object](https://www.php.net/manual/en/class.com.php) - codepage / typelib not supported - Calling methods with...

following functions ignore attributes (especially driver-specific attributes) - [ ] PDOStatement::setAttribute - [ ] PDO::prepare - [ ] PDOStatement::bindColumn - [ ] PDOStatement::bindParam also, there are a few PDO attributes...

implement functions and resources as in https://www.php.net/manual/en/book.imap.php

feature

The following snippet produces a discrepancy between PHP and PeachPie. It appears that the IL generated by PeachPie does not seek and write the bytes at the appropriate location. Instead,...

[COM extension](https://www.php.net/manual/en/book.com.php) is actually not supported. What would be the steps needed to bring it to PeachPie? Of course it would work only on Windows, so I guess it should...

#813 added the missing SqlSrv constants. This issue track their support: **Attributes:** - [ ] SQLSRV_ATTR_ENCODING - [ ] SQLSRV_ENCODING_DEFAULT - [ ] SQLSRV_ENCODING_BINARY - [ ] SQLSRV_ENCODING_SYSTEM - [...