I\'m wondering if it is at all possible to create a stream wrapper in order to load some code from an array into using something like the following
I know this is an old question...but I think it's worth noting that you can do something like:
$content = ' print this html ';
Normally this would very cumbersome to eval, but you can do:
include "data://text/plain;base64,".base64_encode($content);
And it will parse it snappy like!