Skip to content

Releases: CopernicaMarketingSoftware/PHP-CPP

Version 1.2.1

23 Oct 13:05
Compare
Choose a tag to compare

Minor release which adds a few minor things.

  • Php::Value can now be casted to a std::set
  • Php::ByVal and Php::ByRef will now be type-less if no type provided
  • Makefile will now respect the specified php-config binary
  • Makefile will now build a static library as well

Version 1.2

26 Aug 12:03
Compare
Choose a tag to compare

This is mainly a bugfix version + some new features and change in behavior of some functions.

  • New feature: Php::Value objects can now also be compared with other Php::Value objects using C++ comparison operators like ==, <, >, etcetera.
  • Fix: magic methods were not working for objects created with Php::Object("MyClass", new MyClass())
  • Fix: moving nullptr to a Php::Value object caused a crash
  • Fix: infinite loop when compariting value objects with each other using operator ==
  • New feature: A C++ class does no longer have to have a default constructor to be usable from PHP
  • Changed behavior: PHP-CPP used to throw PHP exceptions to user space when an error occured, while the Zend engine would trigger a fatal error in similar situations and stop further execution. This was a difference between PHP-CPP and the Zend engine. This has been changed: now PHP-CPP also triggers fatal errors when the programmer makes a mistake (instead of throwing exceptions).
  • Fix: methods and properties from base classes were not available in derived classes
  • New feature: Php::eval() function
  • New feature: Php::class_exists() function
  • New feature: Php::is_a() and Php::is_subclass_of() functions
  • New feature: Methods Php::Value::instanceOf() and Php::Value::derivedFrom()
  • Fix: creating a Php::Value based on a std::map would not result in an array variable being created
  • Fix: for objects created using Php::Object() constructor, the __construct() method was not called
  • Fix: traversing through array properties was not always working when property names started with a null byte
  • Fix: casting a Php::value holding an array to a map with string keys, will now turn the keys into numeric string keys ("1", "2", etcetera)
  • Fix: "apachectl reload" caused a crash on PHP 5.3 environments
  • Changed behavior: setting or retrieving properties of a Php::Value that start with a null byte (to rely on the Zend implementation of private properties) will no longer work (PHP-CPP users should never rely on specific Zend features)

Version 1.1.1

13 May 09:06
Compare
Choose a tag to compare

This release fixes a bug that caused apache to crash when the "apache reload" command was given while an extension based on PHP-CPP was installed.

Version 1.1

28 Apr 11:47
Compare
Choose a tag to compare

Release 1.1 of the PHP-CPP library contains a number of small bug fixes, and support for php.ini variables.

The source code and directory structure of the library has been refactored to prepare for future support of HHVM, so that extensions written with PHP-CPP can be used in combination with Zend, and in combination with HHVM. This is work in progress: currently PHP-CPP extensions only work with Zend.

The most important changes in version 1.1 are:

  • Support for php.ini entries.
  • Restructured source code to be engine agnostic.

Version 1.0

05 Apr 10:07
Compare
Choose a tag to compare

This is the first stable release of the PHP-CPP library. Since the previous release various bugs have been fixed and a number of small features have been added. These are the highlights:

  • Support for TRSM (multi-threading PHP installations)
  • Test framework has been added to the source distribution
  • Fixed iterating over arrays
  • Fixed populating multidimensional arrays
  • Allow chaining of class/method/property registration methods.
  • Class and interface inheritance can be specified in the get_module() startup function
  • Fixed super-global Php::SERVER when running as Apache module with just-in-time population
  • Added support for static class properties

Version 0.9.2

24 Mar 10:02
Compare
Choose a tag to compare

This release has mainly bug fixes, and some small new necessary features:

  • A unit test framework has been added
  • Object properties could not have initial negative values
  • C++ iterators were not correct when iterating over PHP classes that implemented Iterator or IteratorAggregate
  • Output streams 'Php::out', 'Php::notice', 'Php::warning' and 'Php::error' and 'Php::deprecated' have been added
  • Setting up multidimensional arrays was not working correctly

Version 0.9.1

18 Mar 09:06
Compare
Choose a tag to compare

In PHP-CPP version 0.9.1 several small memory corruption bugs have been fixed, and some changes have been made that prevented the library from being compiled for different PHP versions or with different compilers than the ones used by us.

No new features have been introduced. Just like PHP-CPP v0.9 this is a feature-freeze releases that prepares for the upcoming v1.0 version.

Version 0.9

16 Mar 15:06
Compare
Choose a tag to compare

This v0.9 release has all the features that we want to have in v1.0. But it has not been tested so extensively, hence the v0.9 tag: almost v1.0, but not completely stable.

The most important new features and changes since the previous release (v0.2) are:

  • Php::Serializable class
  • Support for __clone(), __destruct() and __callStatic() methods
  • C++ classes without a copy constructor automatically are unclonable in PHP too
  • Magic methods are no longer virtual, which allows one to use alternative method signatures
  • Introduces "super-globals" Php::GET, Php::POST, Php::COOKIE, etc. just like PHP has.
  • Properties can be implemented with callback methods, enabling read-only properties
  • Fixed issues to compile on OSX
  • Direct access to the string buffer inside a Php::Value object is now allowed

Because magic methods no longer are virtual, the v0.9 release is not compatible with v0.2. Extensions that were developed using PHP-CPP v0.2 have to be recompiled, and possible be slightly modified too to match the new magic method signature.

Version 0.2

13 Mar 07:40
Compare
Choose a tag to compare

The PHP-CPP library is making progress. Since v0.1 many things have changed and many new features have been introduced - too many to even mention. Version 0.2 is not compatible with 0.1. This means that you will have to make changes to your extensions if you upgrade from v0.1 to v0.2.

This version has been brought out to give some stability to extensions writers, and to allow the PHP-CPP development to move on without having to worry about breaking existing extension with every change that is made to the library.

This is an pre-release with an API that is not yet stabilized. The library is in a usable state, but we do not guarantee that future releases will be compatible with v0.2.

Version 0.1

28 Feb 14:32
Compare
Choose a tag to compare
Version 0.1 Pre-release
Pre-release

This is a very initial release.