You can't. As you've stated correctly, controller plugins and viewhelpers extend different classes which makes them incompatible to each other.
Also, it doesn't really make sense to mix controller plugins with view helpers because they both fulfill completely different purposes. Controller plugins are used to perform commonly used portions of business logic, viewhelpers, however, provide reusable view logic.
I'd suggest to create a class which is capable of date conversion (or whatever you need) and create an atomic view helper to render dates in the desired format (using this class). However, I wouldn't necessarily create a controller plugin for this, because you can easily retrieve the instance of this class using the service manager.
Note: I consider my answer to be rather general -- I haven't really taken into account what exactly you're trying to do (with other words: I didn't think about if it makes sense to create a wrapper for Date functions). If my answer doesn't fit your problem, please, feel free to state your question more closely.