Christopher Pereira

Results 58 issues of Christopher Pereira

$val1 = 'é'; $val2 = unserialize(serialize($val1)); ``` $EOL = "\n"; echo ($val1 === $val2 ? 'Equal' : 'Not Equal') . $EOL; // Returns 'Equal', because $val1 === $val2 === 'é'...

Some PHP apps use file_exists() for checking whether a .PHP file exists or not. For example, for checking if a module is installed, or to find out where it is...

Using managed extension "PhpNetMsSql"... ``` $con = mssql_pconnect(',', '', ''); mssql_select_db(''); mssql_query('BEGIN TRANSACTION'); ``` Throws: Warning: mssql_query(): Command execution failed: Transaction count after EXECUTE indicates a mismatching number of BEGIN...

@jakubmisek here is a patch for the C14N bug. Can you also please merge my helper function "peachpie_set_string_encoding()" which is required to change encoding and be able to work with...

Test case: https://onlinephp.io/c/f4d65 Given the following XML example, running C14N() on tag "NODE" returns the whole document (BUG). c14N() on tag "NODE" should only return the content of tag "NODE"....

How to disable all transformations by default? I just want to apply "ShortArray". Thanks.

When trying to get a diff between a big dump with data and a dump of schema only, the command hangs using 100% cpu. When comparing only schema dumps it...

**Description of problem:** Lock file on non-glusterfs-volume is taken for ever by glusterfs fuse after forced reboot. **The exact command to reproduce the issue**: Used flock() from PHP on /tmp/test.lock...

We are looking for a way to 1) power off the Mini SE when battery charging starts and 2) power on when the next mission should be started. The drone...