Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
86 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
1answer
234 views

SQLite3 haskell createFunction example

Here's the SQLite3 Haskell bindings with the ability to create function: http://hackage.haskell.org/packages/archive/sqlite/0.5.1/doc/html/Database-SQLite.html But I can't get to use this feature, I ...
2
votes
3answers
206 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
2answers
131 views

Error SQL0104 when creating a function in System i V7R1

I'm creating a SQL function on System i V7R1: CREATE FUNCTION MYSCHEMA.GROUPDIBAS(v_code VARCHAR(50)) RETURNS VARCHAR(2048) LANGUAGE SQL BEGIN DECLARE str VARCHAR(2048); SET str = ''; FOR ...
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
1answer
266 views

How do I create user-defined sql functions using CakePHP?

Consider the example given on this page about creating user-defined functions in SQL and then using the user-defined function in the WHERE clause. mysql> CREATE FUNCTION myFunction(in_rep_id INT) ...
1
vote
1answer
211 views

MySQL CREATE FUNCTION fails on a shared webserver

I have the following function. When I try to create it on a webserver, it fails with You do not have the SUPER privilege and binary logging is enabled (you might want to use the less safe ...
1
vote
0answers
713 views

MySQL - syntax error creating function

I keep receiving an error with the following code. I am trying to make a function that will format a field (content=0.0032) into a varchar/percent (content=0.32%). At the moment I'm just trying to get ...
1
vote
3answers
397 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
2answers
25 views

MySQL stored function with nested IF… END IF, error in syntax, right syntax to use near ''

I have a function that I currently use in PHP which compiles a mailing address from separate fields but takes into account different formats used in different regions. I'm trying to replicate this as ...
0
votes
1answer
56 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
1answer
766 views

I want to be able to perform an SQL SELECT (sqlite) on a table and ORDER BY each rows distance from an arbitrary point

I have a sqlite database with a table full of geographic locations, each stored as a latitude and longitude value in degrees. I wanted to be able to perform a SQL SELECT on this table and ORDER BY ...
0
votes
1answer
391 views

How to compile a user defined function in SQLite

I have an example C function that I would like to attach to a database temp.sqlite (it's from an O'Reilly book, so I know it works). I read the section in the book and sqlite.org, but they assume away ...
0
votes
2answers
662 views

How to fix MySQL CREATE FUNCTION query?

I want to add mysql function: CREATE FUNCTION `chf_get_translation`(translation_id INT, site_lang INT) RETURNS text CHARSET utf8 BEGIN DECLARE translation TEXT; SELECT title INTO ...
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 ...