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)

1
vote
1answer
38 views

Upload a picture with a php function

It's the first time I'm trying to create a function and I can't figure it out... I'm trying to build a function who will upload a picture and return her path, but the echo doesn't display anything ...
0
votes
0answers
18 views

Why is my simple if isset function not working with PDO Object?

Okay I had this on my index.php page: <!-- check if website is present --> <? if (isset($business->website)) { echo '<a href="http://' . $business->website . '" ...
0
votes
3answers
60 views

How to pass a variable of your own (non-standard) type to a function as an argument?

I'm writing a program that must normalize audio *.wav file. There is a task "to display header's data": ChunkId, ChunkSize and so on. I want to make a function named display_hdr (In order to have ...
0
votes
2answers
57 views

Why does my original list change?

I a wrote a function SwapCities that is able to swap entries 3 and 4 in a list. So f.e. [0,1,2,3,4] should become [0,1,2,4,3]. This function works perfectly, but strangely my original list also ...
1
vote
4answers
51 views

Javascript vs jQuery Function Difference?

I've been making a program and I want to know the difference between starting two functions like so: $(function () { //content }); and function Name () { //content } Also, why can't I ...
0
votes
2answers
10 views

wp_get_attachment_image does not return medium sized images

I read through the codex for these 2 functions: wp_get_attachment_image http://codex.wordpress.org/Function_Reference/wp_get_attachment_image wp_get_attachment_image_src ...
13
votes
11answers
296 views
+100

Define local function in JavaScript: use var or not?

When a local (inner) function is declared in JavaScript, there are two options: Declaring with var keyword, assigning to the variable: (function() { var innerFunction1 = function() { ... }; ...
2
votes
3answers
46 views

Finding css selectors in a webpage using php

I need to find existence of some css selectors in webpages, for example if a webpage has a div with a ID like this: <div id='header'> Smile </div> then a php function should return true ...
0
votes
1answer
36 views

Replace JavaScript's function keyword

Is it possible to replace the function keyword to something smaller as void, sub etc? I've seen it being used in libraries like these two: http://sweetjs.org/ http://processingjs.org/
0
votes
2answers
49 views

Why is my JavaScript code not calling my function?

I am fairly new to JavaScript and made a VERY basic choose your own adventure game with a switch statement. When I attempt to call my function using a button it is unsuccessful. My JavaScript alone is ...
-3
votes
0answers
38 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
1
vote
3answers
47 views

How do I use user input to invoke a function in Python?

I have several functions such as: def func1(): print 'func1' def func2(): print 'func2' def func3(): print 'func3' Then I ask the user to input what function they want to run using ...
-7
votes
3answers
201 views

Why Haskell's `fst` and `snd` have such a short (strange) names? [closed]

I'm new to Haskell and what really bothers me at the moment is why the people who made the libraries added functions called fst and snd instead of using (normal) names like first and second. What's ...
-5
votes
7answers
68 views

In C, calling a function from main [closed]

In C, I tried to call a function printSum from main. But the main function isn't calling printSum, its just printing out "Hi!" which is a print statement from main. I am not sure why printSum is not ...
0
votes
1answer
14 views

Scilab - calling another GUI within a GUI. Functions not working

I'm quite new to scilab, I have created two GUIs (see example below), with script 2 being called from script 1. However the function in script 2 don't seem to work. Can anyone help? Script 1 ...
0
votes
2answers
72 views

C++ Array of Functions

I'm trying to deal with an array of functions, however when I assign the functions to the array (in the class's default constructor) I am greeted with the error message: "void (GameObject::*)()" ...
1
vote
1answer
63 views

scala function with repeated parameters

I see that it possible to uses the following syntax for method that take parameters of a repeated type: def capitalizeAll( args: String*) = { args.map { args => args.capitalize } } However I ...
2
votes
5answers
45 views

Creating a new txt file with a PHP function

I am trying to write a function that takes two parameters (the filename and a sting to put inside) that creates a new file, containing the string. <?php function writeFile($name, $string) { ...
0
votes
2answers
22 views

How to disable button from being clicked before a function has finished in javascript

Okay, so I have a button without any Id but when it is clicked it starts a function called buttonClick. This function basically controls a slot machine(poke machine) it's images, winnings etc. Note, ...
3
votes
2answers
73 views

Wrapping an accessor method for a global object in some other function

I do a lot of stuff specifically with PHP and WordPress, and I've come across this concept quite often throughout the WordPress application; although, this question isn't specific to WordPress. I'll ...
1
vote
2answers
20 views

Trouble with Jquery for each and $(this), I can't reference one element

I am currently having trouble jquery I'm trying to trigger an event where when the user clicks on the header of an article, the hidden paragraph snippet is displayed under it fades in, my problem is ...
0
votes
2answers
27 views

Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe

In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
1
vote
3answers
139 views

Toggle between functions when key is pressed using Python

Hey Guys I am doing an assingment for uni and I have to make a colouring book which enables the user to swap between two modes using the space key. In the first mode the user must be able to move the ...
2
votes
1answer
32 views

php functions playing games

I'm curious as to why variables aren't echoing using a function... (If that makes sense lol..) function name(){ echo "$info->fullname"; } When i then use <?php name(); ?> anywhere on ...
4
votes
2answers
44 views

Lua functions — a simple misunderstanding

I'm trying to develop a function which performs math on two values which have the same key: property = {a=120, b=50, c=85} operator = {has = {a, b}, coefficient = {a = 0.45}} function Result(x) ...
0
votes
1answer
41 views

Filter not working in Qt C++

I'm trying to filter the elements of a list by quantity using Qt. It's just that I press the filter button and nothing happens. Maybe i'm doing something wrong in the SLOT function. The filter ...
0
votes
1answer
18 views

Calling jQuery function on page load with multiple elements

I'm working with Volusion and am trying to call a jQuery function on page load. I'm a little new to jQuery so please bear with me. Basically there are '.productnamecolor.colors_productname' items that ...
2
votes
1answer
56 views

call a Lua function just by writing its name (without parentheses)

I'm looking forward to using a variable like "asdf" instead of writing the name function to check its return (which changes now and then). That's why "asdf" variable should update its value everytime ...
1
vote
1answer
46 views

How to let two threads exchange data via a pointer?

I want an asynchronous thread to edit an object. Therefore I store a pointer to that object. Data *pointer; There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
1answer
36 views

Functioncall to javascript not working

i'm using php to generate some button that have their Id and the Id of the text they should show as parameters. But for some reason the function call doesn't seem to be working. ...
0
votes
1answer
21 views

VBA to C++ dll function call, how to have missing argoument

I have function that I compiled with C++ as dll. I access it via vba no problem everything works great. I want to have one of the arguments to be set to a specific value if the user does not specify ...
0
votes
1answer
37 views

How to create callback (add as dynamic argument, a function)?

I'm creating this method / function and I need to implement callback. I mean, I need to add as dynamic argument, a function. I have read several articles but I can not understand how to get it. Any ...
0
votes
5answers
763 views

Setting up an array with jQuery .each() function?

I'm trying to set up an array through jQuery's .each() function, but it seems like I'm not properly doing it? I have attributes in the html such as: <div class="cheers" data-fname = "fname" ...
0
votes
1answer
86 views

How should I use closures in my javascript program? [closed]

This question is about the best way to declare functions in Javascript. the app is a small 2 player board game I'm working on as part of a bigger web page. Basically I have a socket which receives and ...
0
votes
1answer
26 views

Javascript fuction declaration conversion

I have a javascript function declared as myFunction: function() { // some codes... } and I want to convert the declaration format to function myFunction() { // some codes... } First of all ...
5
votes
5answers
81 views

Best practice for returning multiple values in Java?

Today I've added a extra security check behind my login forms, to slow down brute force attacks. I've got multiple login forms and made a nice easy to call function that does all the checking and then ...
1
vote
2answers
36 views

what is the purpose of having function exec() in Hook.php in prestashop

In the Header.tpl file there is a hook {$HOOK_TOP} which contains all the header part including menu, search etc... You can check that in this URL In the FrontController it shows... 'HOOK_TOP' => ...
0
votes
2answers
50 views

Return multiple values with function in R

Iam trying to calculate multiple values with my own function from a dataframe. The function currently returns only one value in a dataframe. It seems my for loop is not working correctly. I've also ...
-2
votes
3answers
36 views

retrieve data from db using function pdo

here is the code before implementing the function, try { $conn = new PDO('mysql:host=localhost;dbname=dbname', 'usr', 'pass'); $conn->setAttribute(PDO::ATTR_ERRMODE, ...
-4
votes
1answer
155 views

how to create a function name with '$' as first letter

I am using Lua + Delphi and I need to get some values in Lua which come from Delphi procedures. To call them I need to use, for example '$hp' or '$level'. And here, I suppose, it will run the ...
-1
votes
3answers
53 views

how to create dynamic function in php [closed]

how to create a dynamic function with php. eg I want to make: <?php function update($table, $data=array(), $column, $value) { if (is_array ($data) { $q = "UPDATE $table SET $column ...
0
votes
0answers
15 views

Does register_shutdown_function work for nested functions

Suppose I have something like this, <?php $test = new Test(); register_shutdown_function(array($test, 'shutdownHandler')); $test->func1(); Class Test { func1() { ...
-1
votes
1answer
4k views

How to create custom JQuery function and how to use it?

I'm searching for information about that - "How to create custom (own) JQuery function and how to use it" I've searched in G, but I didn't found information about that. Can you explain in details, ...
1
vote
1answer
29 views

Having an issue with a binary search involving vectors (C++)

I'm attempting to find a value through a binary search, but i keep getting an error of error: no match for 'operator==' in '(& itemNumb)->std::vector<_Tp, _Alloc>::operator[], std::allocator > ...
0
votes
6answers
62 views

if I define a function in the implementation (.cpp) file without defining it in the header file what happens?

I'm a C++ noob. I have a foo.cpp file which defines a function, void sort() { // details of sort algorithm } I have not defined this in the corresponding header file, but I get no compilation ...
0
votes
4answers
72 views

C++ function in different source files with global variable

I'm doing c++ with different function. I want to put the function in different source file. To do I create a header file: function.h int X(int i, int k); and the file with the function: ...
0
votes
6answers
42 views

javascript function, how to take the variable within document.write?

I need to call a variable inside a document.write but it doesnt work... example function(){ var variable=document.getElementById("text"); alert("your text "+ variable); } inside a table ...
0
votes
5answers
42 views

Reversed String Using Recursion Functions

#include <stdio.h> #include <stdlib.h> #include <string.h> void rec(char pin[]); main() { char pin[100]; printf("Give word: "); scanf("%s", pin); rec(pin); ...
0
votes
3answers
38 views

How to change 2 strings using a function, by changing their pointers' value

main() char *s1="Second"; char *s2="First"; swap(s1,s2); printf("%s\n",s1); printf("%s\n",s2); I have as an exercise, to swap those 2 strings above (so that the one that executes the program will ...
-1
votes
2answers
45 views

Call Arbitrary Constructor With Arbitrary Arguments [duplicate]

Given the name of the class as $class, and the arguments to pass to the constructor an an array $args, can I actually create a new instance of $class? It's possible using else-if chains (up to the ...

1 2 3 4 5 371