A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

33
votes
5answers
13k views

What does apply_filters(…) actually do in WordPress?

I'm trying to understand some of the function in WordPress, but I can't get my head around what apply_filters(...) actually does. Is someone able to clear this up for me with a few examples?
20
votes
8answers
11k views

How does the location of a script tag in a page affect a JavaScript function that is defined in it?

I read that you should define your JavaScript functions in the <head> tag, but how does the location of the <script> (whether in the <head>, <body>, or any other tag) affect a ...
9
votes
3answers
4k views

Can you store a function in a PHP array?

e.g.: $functions = array( 'function1' => function($echo) { echo $echo; } ); Is this possible? What's the best alternative?
23
votes
1answer
6k views

How can I generate a list of function dependencies in MATLAB?

In order to distribute a function I've written that depends on other functions I've written that have their own dependencies and so on without distributing every m-file I have ever written, I need to ...
20
votes
5answers
40k views

PHP Fatal error: Using $this when not in object context

I've got a problem: I'm writing a new WebApp without a Framework. In my index.php im using: require_once('load.php'); and in * load.php* I'm using require_once('class.php'); to load my class.php. ...
11
votes
4answers
4k views

Ruby - print the variable name and then its value

What is the best way to write a function (or something DSLish) that will allow me to write this code in Ruby. How would I construct the function write_pair? username = "tyndall" write_pair username # ...
7
votes
4answers
10k views

Dynamically invoking any function by passing function name as string

How do I automate the process of getting an instance created and its function executed dynamically? Thanks Edit: Need an option to pass parameters too. Thanks
15
votes
2answers
17k views

Get Calling function name from Called function in C# [duplicate]

Possible Duplicate: How can I find the method that called the current method? How can I get the calling function name from the called function in c#?
13
votes
2answers
120k views

Calling a function in jQuery with click()

In the code below, why does the open function work but the close function does not? $("#closeLink").click("closeIt"); How do you just call a function in click() instead of defining it in the ...
7
votes
3answers
3k views

Two ways of defining functions in Scala. What is the difference?

Here is a little Scala session that defines and tries out some functions: scala> def test1(str: String) = str + str; test1: (str: String)java.lang.String scala> test1("ab") res0: ...
14
votes
4answers
15k views

newid() inside sql server function

I have to insert a fake column at the result of a query, which is the return value of a table-value function. This column data type must be unique-identifier. The best way (I think...) is to use ...
15
votes
5answers
2k views

Advanced Javascript: Why is this function wrapped in parentheses? [duplicate]

Possible Duplicate: What is this construct in javascript? I came across this bit of Javascript code but have no idea what to make out of it. Why do I get "1" when I run this code? What is ...
13
votes
1answer
3k views

What is the difference between a function object and a callable object?

I recently saw the presentation about the changes in ECMAScript 5. And there was a slide with this statement: Function vs Callable typeof f === 'function' // → f is Callable ...
10
votes
4answers
13k views

Excel function to make SQL-like queries on worksheet data?

I have a largish table in an excel worksheet: Column_1 | Column_2 | Column_3 ValueA ValueB ValueC .... What I need is a function that will take as input the range and an SQL-like query ...
9
votes
7answers
13k views

Is returning a whole array from a Perl subroutine inefficient?

I often have a subroutine in Perl that fills an array with some information. Since I'm also used to hacking in C++, I find myself often do it like this in Perl, using references: my @array; ...
2
votes
3answers
1k views

C++ class member function callback

I have the following problem. I have a function from an external library (which cannot be modified) like this: void externalFunction(int n, void udf(double*) ); I would like to pass as the udf ...
14
votes
9answers
2k views

how can python function access its own attributes?

is it possible to access the python function object attributes from within the function scope? e.g. let's have def f(): return SOMETHING f._x = "foo" f() # -> "foo" now, what ...
13
votes
2answers
14k views

PHP get all arguments as array?

Hey, I was working with a PHP function that takes multiple arguments and formats them. Currently, I'm working with something like this: function foo($a1 = null, $a2 = null, $a3 = null, $a4 = null){ ...
11
votes
1answer
188 views

Python - how does passing values work?

I have a question about function calls in Python. Say I want to write a function called superLongFunc(expr). The function is super long and really hard to debug. I want to split the function into ...
8
votes
1answer
1k views

Difference between “+” and “-” before function name in Objective-C

What is the difference between "+" and "-" before the function name interface declaration in an Objective-C program. Example: - (void)continueSpeaking; + (NSArray *)availableVoices; What's the ...
6
votes
2answers
237 views

Is it possible to std::move objects out of functions? (C++11)

This program tries to move a string out of a function and use it for the construction of another string: #include <iostream> #include <string> #include <utility> std::string ...
5
votes
1answer
3k views

Computing the cross product of two vectors in Fortran 90

I would like to compute the cross product of two vectors in Fortran 90. For example, in words, the cross product of (1, 2, 3) and (4, 5, 6) turns out to be (-3, 6, -3) in Cartesian coordinates. I ...
5
votes
4answers
214 views

what is the difference between these two functions/approaches

I use only jquery for writing javascript, one thing that confuses me is these two approaches of writing functions, 1st approach vote = function (action,feedbackId,responseDiv) { alert('hi'); ...
4
votes
5answers
8k views

Dynamic function name in javascript?

I have this: this.f = function instance(){}; I would like to have this: this.f = function ["instance:" + a](){};
3
votes
1answer
6k views

What's the difference between a script and a function in MATLAB?

What are the differences between a MATLAB script file and a MATLAB function file?
9
votes
6answers
7k views

Redefining PHP function?

If I have a function: function this($a){ return $a; } If I wanted to redefine the function, would it be as simple as rewriting it? function this($a, $b){ //New this function return $a * $b; }
9
votes
4answers
5k views

PHP: Suppress output within a function?

What is the simplest way to suppress any output a function might produce? Say I have this: function testFunc() { echo 'Testing'; return true; } And I want to call testFunc() and get its ...
8
votes
11answers
12k views

Functions inside functions in C

I'm making a code that is similar to this: #include <stdio.h> double some_function( double x, double y) { double inner_function(double x) { // some code return x*x; } double ...
7
votes
5answers
433 views

In Javascript/jQuery what does (e) mean?

I new to JavaScript/jQuery and I've been learning how to make functions, but a lot of functions have cropped up with (e) in brackets. Let me show you what I mean: $(this).click(function(e) { // ...
7
votes
5answers
12k views

Objective-C Default Argument Value

Hey there, quick question here. I'm sure there's a simple answer. Coming from PHP, I'm used to declaring a function with a default argument value like this: function myFunction ($array, $sort = ...
6
votes
3answers
794 views

Unlimited arguments for PHP function?

I was wondering how in php you would create a function that could take an unlimited number of parameters, eg you could call myFunc($p1, $p2, $p3, $p4, $p5...); as many as you like. my next ...
6
votes
8answers
5k views

Passing a constant array to a function in C/C++

If I have a prototype that looks like this: function(float,float,float,float) I can pass values like this: function(1,2,3,4); So if my prototype is this: function(float*); Is there any way I ...
4
votes
1answer
252 views

Why this kind of function invocation is wrong in JavaScript?

I'd like to create an anonymous function and then invoke it immediately. 1) This will bring a syntax error. Why? function () { alert("hello"); }(); 2) wrap the function definition with () and ...
3
votes
3answers
463 views

Why can't char** be the return type of the following function in C++?

I have the following function in C++ : char** f() { char (*v)[10] = new char[5][10]; return v; } Visual studio 2008 says the following: error C2440: 'return' : cannot convert from 'char ...
1
vote
8answers
4k views

C++ return array from function

I need to read in an array to my function, extract the data, and then return an array from the function. The array will only ever hold 2 values. This is what I want to do in concept: int ...
1
vote
3answers
601 views

Scala functions with no arguments

In Scala there are two ways to define a function which takes no argument 1 def a=println("hello") 2 def a()=println("hello") These two functions are exactly same but (2) can be called with ...
1
vote
6answers
27k views

How to dynamically call a php function in javascript

I have an index.php with the following js function: function returnImageString() { return "<?php include 'inc/image.functions.php'; echo getRandomImages(7); ?>"; //This isn't ...
0
votes
8answers
461 views

Function arguments (in Python for example)

What are [function] arguments? What are they used for? I started learning Python very recently; I'm new to programming and I apologize for this basic question. In every Python tutorial I go through ...
9
votes
5answers
449 views

In a C function declaration, what does “…” as the last parameter do?

Often I see a function declared like this: void Feeder(char *buff, ...) what does "..." mean?
8
votes
5answers
415 views

passing variable number of arguments

Can we pass variable number of arguments to a function in c?
8
votes
3answers
10k views

Get signatures of exported functions in a DLL

Is it possible to get an exported (C style?) function's signature (parameter count/types, return type) from a DLL? I can view the list of function names, addresses, ordinals, etc. with DLL Export ...
7
votes
5answers
9k views

Use JavaScript variable as function name?

I have the following code in Javascript: jQuery(document).ready(function(){ var actions = new Object(); var actions; actions[0] = 'create'; actions[1] = 'update'; for (key in ...
4
votes
3answers
185 views

Why do two functions have the same address?

Consider this function template: template<typename T> unsigned long f(void *) { return 0;} Now, I print the addresses of f<A> and f<B> as: std::cout << (void*)f<A> ...
4
votes
2answers
884 views

How to alias a function name in Fortran

Not sure if the title is well put. Suggestions welcome. Here's what I want to do. Check a condition, and then decide which function to use in a loop. For example: if (a < 0) then loop_func = ...
4
votes
3answers
405 views

function name($param, $line = __LINE__, $file = __FILE__) {};

Is it possible to have a function automatically contain the line number and the file that the function was CALLED in, as if i call __LINE__ or __FILE__ in the function it will use the line and file ...
4
votes
6answers
220 views

Need for prefixing a function with (void)

I recently came across a rather unusual coding convention wherein the call for a function returning "void" is prefixed with (void). e.g. (void) MyFunction(); Is it any different from the ...
3
votes
3answers
1k views

javascript - document.write error?

Consider the script.. <html> <head> <script type="text/javascript"> document.write('TEST'); </script> </head> <body> Some body content ... ...
2
votes
2answers
236 views

LZW Compression In Lua

Here is the Pseudocode for Lempel-Ziv-Welch Compression. pattern = get input character while ( not end-of-file ) { K = get input character if ( <<pattern, K>> is NOT in ...
2
votes
5answers
3k views

Callback functions in C/C++/C# [closed]

I want to understand the main meaning of Callback Functions. Because today all day long I was searching through internet to find some information. I have Find many articles about Callback Functions ...
2
votes
1answer
2k views

Recreate Excel RATE function using Newton's Method

I'm working on converting a mortgage calculator in PHP, but I don't necessarily need a PHP solution. I'm looking for the logic needed to replicate the Excel RATE function. I've found a solution which ...

1 2 3 4 5 37