Tagged Questions
0
votes
1answer
55 views
Need help understanding create_function() and regex
After allot of searching around SO and other forums also stumbling over various php function documentation, I tried to edit a function that I found on here(converts URLs to clickable links) so it will ...
0
votes
3answers
291 views
what does this preg_replace_callback do in PHP? and how do I stop it leaking memory?
I've got a section of code on a b2evo PHP site that does the following:
$content = preg_replace_callback(
'/[\x80-\xff]/',
create_function( '$j', 'return "&#".ord($j[0]).";";' ),
...