feature #1209 added the starts with, ends with, and matches operators (fabpot)
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 2 Oct 2013 19:38:09 +0000 (21:38 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 2 Oct 2013 19:38:09 +0000 (21:38 +0200)
This PR was merged into the master branch.

Discussion
----------

added the starts with, ends with, and matches operators

Adds three new operators:

 * `ends with`
 * `starts with`
 * `matches`

I've not added the `contains` operator as it would be equivalent with the existing `in` one.

TODO:

 * [x] add docs
 * [x] fix on PHP 5.2.

Commits
-------

b66181d added the starts with, ends with, and matches operators

1  2 
CHANGELOG

diff --cc CHANGELOG
+++ b/CHANGELOG
@@@ -1,6 -1,6 +1,7 @@@
  * 1.14.0 (2013-XX-XX)
  
 + * fixed usage of the html_attr escaping strategy to avoid double-escaping with the html strategy
+  * added new operators: ends with, starts with, and matches
   * fixed some compatibility issues with HHVM
   * added a way to add custom escaping strategies
   * fixed the C extension compilation on Windows