A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.
1
vote
2answers
419 views
Modify an Existing PHP Function to Return a String
I have a simple PHP function that outputs HTML.
<?php
function get_header() {
?>
<div id="header">
<div class="page-width">
<!-- And a lot more HTML after this line. -->
...
13
votes
2answers
4k views
jquery - difference between $.functionName and $.fn.FunctionName
In jQuery, I have seen both the following ways of defining a jQuery function:
$.fn.CustomAlert = function() {
alert('boo!');
};
$.CustomAlert = function() {
alert('boo!');
};
I understand that ...
10
votes
6answers
10k views
C Programming: malloc() inside another function
I need help with malloc() inside another function.
I'm passing a pointer and size to the function from my main() and I would like to allocate memory for that pointer dynamically using malloc() from ...
12
votes
1answer
6k views
Lat/Lon + Distance + Heading --> Lat/Lon
So: I have the following function, adapted from a formula found online, which takes two lat/lon coordinates and finds the distance between them in miles (along a spherical Earth):
public static ...
34
votes
9answers
6k views
Is it pythonic for a function to return multiple values?
In python, you can have a function return multiple values. Here's a contrived example:
def divide(x, y):
quotient = x/y
remainder = x % y
return quotient, remainder
(q, r) = ...
14
votes
2answers
2k views
JavaScript function order: why does it matter?
Original Question:
JSHint complains when my JavaScript calls a function that is defined further down the page than the call to it. However, my page is for a game, and no functions are called until ...
22
votes
9answers
6k views
How to deal with name/value pairs of function arguments in MATLAB
I have a function that takes optional arguments as name/value pairs.
function example(varargin)
% Lots of set up stuff
vargs = varargin;
nargs = length(vargs);
names = vargs(1:2:nargs);
values = ...
12
votes
6answers
6k views
Implement generic swap macro in C [duplicate]
Possible Duplicate:
is there an equivalent of std::swap() in c
Hi folks,
I was attempting a problem to write a generic swap macro in C and my macro looks like this:
#define swap(x,y) { x ...
11
votes
3answers
7k views
Difference between passing array and array pointer into function in C
What is the difference between the two functions in C?
void f1(double a[]) {
//...
}
void f2(double *a) {
//...
}
If I were to call the functions on a substantially long array, would these ...
46
votes
16answers
5k views
Is there any way a C/C++ program can crash before main()?
Is there any way a program can crash before main()?
20
votes
4answers
22k views
Is there a function in python to split a word into a list?
Is there a function in python to split a word into a list of single letters? e.g:
s="Word to Split"
to get
wordlist=['W','o','r','d','','t','o' ....]
17
votes
4answers
14k views
What event does JQuery $function() fire on?
We have a JQuery $(function() statement as:
<script type="text/javascript">
$(function(){
//Code..
})
</script>
Dumb question - when exactly is this function executed? Is it when ...
14
votes
9answers
5k views
How many lines of code should a function/procedure/method have? [duplicate]
Possible Duplicate:
When is a function too long?
I've recently been given the unenviable task of reviewing poor code written by another developer and documenting the bad practices. (This is ...
12
votes
3answers
581 views
In Perl, how can I check from which module a given function was imported?
I have a code which calls the function. But I don't know the module this function belongs to. I need it to modify this function.
How can I check it?
10
votes
8answers
9k views
Declaring functions in JavaScript [duplicate]
Possible Duplicate:
Javascript: var functionName = function() {} vs function functionName() {}
What's the difference between these two ways of declaring a function?
function someFunc() { ... ...
22
votes
6answers
2k views
What is this strange function definition syntax in C?
I've seen a few function definitions like this recently while playing with GNU Bison:
static VALUE
ripper_pos(self)
VALUE self;
{
//code here
}
Why is the type of self outside of the ...
13
votes
2answers
8k views
List of global user defined functions in JavaScript?
Is it possible to get a list of the user defined functions in JavaScript?
I'm currently using this, but it returns functions which aren't user defined:
var functionNames = [];
for (var f in window) ...
10
votes
7answers
2k views
Why pass by const reference instead of by value?
From what I understand: when you pass by value, the function makes a local copy of the passed argument and uses that; when the function ends, it goes out of scope. When you pass by const reference, ...
20
votes
8answers
4k views
Is it legal to use the increment operator in a C++ function call?
There's been some debate going on in this question about whether the following code is legal C++:
std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
bool isActive = ...
17
votes
5answers
20k views
C/C++: Static function in header file, what does it mean?
I know what it means when declared in source file. I reading some code, find that static function in header files could be invoke in other files.
12
votes
4answers
770 views
When is a function try block useful?
I'm wondering when programmers use function try blocks. When is it useful?
void f(int i)
try
{
if ( i < 0 )
throw "less than zero";
std::cout << "greater than zero" << ...
8
votes
3answers
5k views
Default argument promotions in C function calls
Setup
I have a few questions about the default argument promotions when calling a function in C. Here's section 6.5.2.2 "Function calls" Paragraphs 6, 7, and 8 from the C99 standard (pdf) (emphasis ...
7
votes
7answers
6k views
Overriding vs Virtual
What is the purpose of using the reserved word virtual in front of functions? If I want a child class to override a parent function, I just declare the same function such as "void draw(){}".
class ...
5
votes
5answers
4k views
Add days to a date in PHP
Is there any php function available where I can add days to a date to make up another date? For example, I have a date in the following format:
27-December-2011
If I add 7 to the above, it should ...
14
votes
6answers
34k views
VB.NET Function Return
In order to return a value from a VB.NET function one can assign a value to the "Functions Name" or use "return value."
I sometimes see these inter-mixed in the same function. Personally, I prefer ...
8
votes
4answers
5k views
Is it possible to replace a function in php (such as mail) and make it do something else?
I want to rewrite a function in PHP (let's say the mail() function), and want to make it so when I call mail() from now on, it will load my version of mail() and not the default php version. Is this ...
7
votes
7answers
7k views
The advantage / disadvantage between global variables and function parameters in PHP?
sorry i'm a beginner and i can't determine how good a question this is, maybe it sounds utterly obvious to some of you.
if our use of these two below is the same which is better?
function ...
5
votes
3answers
2k views
Override default php function
I have script wherein basename() is used 100-1000s of time, I was just thinking if we can override the function rather than changing the function name to something else in all scripts.
The problem ...
4
votes
4answers
7k views
Hide console in C system() function, Win
I am coding a C program in Dev-C++, and I need to use a couple of Windows (CMD) commands. It is easy, but when the command in the system() function is executed, the program runs the console in the ...
3
votes
3answers
3k views
Use Variable as Function Name in PHP [duplicate]
Possible Duplicate:
Use a variable to define a PHP function
Is there a way of using a variable as a function name.
For example i have a variable
$varibaleA;
and I want to create a ...
0
votes
1answer
8k views
How to call an Oracle function with a Ref Cursor as Out-parameter from C#?
I'm using a product that provides a database API based on Oracle functions and I'm able to call functions via ODP.NET in general. However, I can't figure out, how to call a function that includes a ...
7
votes
5answers
38k views
Executing dynamic SQL in a SQLServer 2005 function
I will preface this question by saying, I do not think it is solvable. I also have a workaround, I can create a stored procedure with an OUTPUT to accomplish this, it is just easier to code the ...
6
votes
6answers
2k views
C function const multidimensional-array argument strange warning
Ehllo,
I'm getting some strange warning about this code:
typedef double mat4[4][4];
void mprod4(mat4 r, const mat4 a, const mat4 b)
{
/* yes, function is empty */
}
int main()
{
mat4 mr, ma, ...
5
votes
3answers
738 views
Understanding Python's call-by-object style of passing function arguments
I am not sure I understand the concept of Python's call by object style of passing function arguments (explained here http://effbot.org/zone/call-by-object.htm). There don't seem to be enough examples ...
5
votes
1answer
648 views
Use a variable to define a PHP function
I'd like to dynamically name a few functions using variables, like this:
$thing = 'some_function';
function $thing() {
echo 'hi!';
}
I know I can call a function using a variable like this:
...
3
votes
4answers
760 views
PHP Optional Parameters - specify parameter value by name?
I know it is possible to use optional arguments as follows:
function doSomething($do, $something = "something") {
}
doSomething("do");
doSomething("do", "nothing");
But suppose you have the ...
6
votes
3answers
5k views
PHP - Add link to a URL in a string
I have a function that will add the <a href> tag before a link and </a> after the link. However, it breaks for some webpages. How would you improve this function? Thanks!
function ...
5
votes
6answers
394 views
Why am I able to make a function call using an invalid class pointer
In below code snippet, although pointer is not initialized the call is still made successfully
temp *ptr;
ptr->func2();
Is it due to C++ language property, or it is VC++6 compiler which is foul ...
5
votes
7answers
6k views
Comparing std::tr1::function<> objects
I've been trying to implement a C#-like event system in C++ with the tr1 function templates used to store a function that handles the event.
I created a vector so that multiple listeners can be ...
2
votes
5answers
270 views
order of evaluation of function parameters
What will be printed as the result of the operation below:
x=5;
printf("%d,%d,%d\n",x,x<<2,x>>2);
Answer: 5,20,1
I thought order is undefined yet I found above as interview question ...
2
votes
1answer
661 views
PHP: Calculate a math function f(x) in a string
Is it possible to calculate a math function f(x) that in a string. Something like this:
$function = '2x+3';
$x = 4;
math_function($function, $x); //Shoud produce 11
I can't find a library for tasks ...
2
votes
4answers
1k views
autoload functions in php
Is it possible to autoload functions?
What I have is I have written functions distributed over different files named after the function name, so what I need is to autoload the file containing the ...
1
vote
4answers
94 views
Manipulate multidimensional array in a function
I read a lot of stuff in here and tried many but i couldn't find a way to pass a multidimensional array to a function in C,change some of the values and somehow return the new array.
It's important to ...
0
votes
2answers
730 views
Magic functions __call() for functions?
The magic function __call() in php are used in classes. Are there any similar magic function but for functions instead? Like __autoload() is for functions.
For example something like this
function ...
45
votes
5answers
71k views
Call a function with argument list in python
I'm trying to call a function inside another function in python, but can't find the right syntax. What I want to do is something like this:
def wrapper(func, args):
func(args)
def func1(x):
...
47
votes
3answers
52k views
How can I pass a reference to a function, with parameters? [duplicate]
Possible Duplicate:
How can I pre-set arguments in JavaScript function call? (Partial Function Application)
I need to able to pass a reference to a function with a given set of parameters.
...
20
votes
9answers
11k views
C++: How to implement a timeout for an arbitrary function call?
I need to call a library function that sometimes won't terminate within a given time, unfortunately. Is there a way to call the function but abort it if it doesn't terminate within n seconds?
I ...
20
votes
4answers
2k views
Haskell: How to compose `not` with a function of arbitrary arity?
When I have some function of type like
f :: (Ord a) => a -> a -> Bool
f a b = a > b
I should like make function which wrap this function with not.
e.g. make function like this
g :: ...
43
votes
5answers
25k views
Python: Can a variable number of arguments be passed to a function?
In a similar way to using varargs in C or C++:
fn(a, b)
fn(a, b, c, d, ...)
17
votes
1answer
2k views
Why are PHP function calls *so* expensive?
A function call in PHP is expensive. Here is a small benchmark to test it:
// create test string
$string = str_repeat('a', 1000);
$maxChars = 500;
// with function call
$start = microtime(true);
...


