Are they any plans to add generic aux classes like CString and CArray that will contain misc useful methods?
This kind of classes is something I stumble upon in many places/projects that I work with.
For example, in CString we could have the following convenient methods:
- bool static isStartingWith($str, $target);
- bool static isEndingWith($str, $target);
In CArray, something that I just needed:
- array static trimToSize($array, $size) - returns part of a multidimensional array, according to given $size.
Obviously, there could be more useful convenience methods that are good to have at your disposal and that I think that are good to have in a framework.
I can contribute the code for the ones mentioned above.

Help













