Tagged Questions

3
votes
6answers
2k views

PHP's create_function() versus just using eval()

In PHP you have the create_function() function which creates a unique named lambda function like this: $myFunction = create_function('$foo', 'return $foo;'); $myFunction('bar'); //Returns bar Is ...
2
votes
3answers
83 views

PHP create_function result stored as instance variable, and called as $object->func()?

I'm using PHPs create_function($args, $code) function to dynamically load a function definition from a database. The way I'm attempting to implement it is as follows: I have a class MyClass which ...
2
votes
3answers
204 views

create_function with default parameter values?

Ok, I'm looking into using create_function for what I need to do, and I don't see a way to define default parameter values with it. Is this possible? If so, what would be the best approach for ...
2
votes
9answers
2k views

PHP sandbox/sanitize code passed to create_function

I am using create_function to run some user-code at server end. I am looking for any of these two: Is there a way to sanitize the code passed to it to prevent something harmful from executing? ...
1
vote
1answer
53 views

Actionscript equivalent to PHP's create_function()

I was wondering if actionscript had something equivalent to PHP's create_function. Specifically, the ability to create a function from a string is what I am looking for.
1
vote
3answers
396 views

PHP, create_function or evalute it at runtime?

i have a class with some method that depend by one parameter. What is the best way to write this method? Example: First way class Test{ var $code; function Test($type){ ...
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]).";";' ), ...
-1
votes
4answers
60 views

create_function in php [closed]

Possible Duplicate: Is there a PHP function to remove any/all key/value pairs that have a certain value from an array? Remove zero values from a PHP array I have one array like this. ...
-1
votes
4answers
159 views

PHP create_function, function without semicolon?

basically, what i want to know is, for the second parameter in the create_function function, is there anyway to pass a string without a semicolon? or will it not work. example: taken from php.net ...