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)

-2
votes
3answers
40 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, ...
1
vote
2answers
54 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' => ...
1
vote
1answer
32 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
4answers
74 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
63 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
6answers
46 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 ...
-1
votes
2answers
46 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 ...
0
votes
4answers
50 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
0answers
16 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() { ...
0
votes
3answers
48 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
vote
4answers
45 views

put php function in seperate file and call from another

i have to connect to db many times, So i thought to put db connecting code in anothe file called functions.php as <?php function connect_db(){ $conn = new ...
0
votes
2answers
26 views

Matlab arrayfun mapping using two arrays?

How would I go about mapping the values of TWO arrays to a function and returning the result as an array? arr = [1, 2, 3]; arr2 = [1, 4, 5]; val= arrayfun(@(x) func(arr, arr2)) function val = ...
0
votes
1answer
30 views

Inserting function argument as string within body of function

I am trying to write a function using aggregate() that will allow me to easily specify one or more variables to list by and their names. data: FCST_VAR OBS_SID FCST_INIT_HOUR ME WIND ...
-1
votes
2answers
60 views

JavaScript anonymous functions in script

<?php ?> <!DOCTYPE html> <html> <head> <script type="text/javascript"> jTimesheetid = ""; jTimesheetweekending = ""; jPersonnelNo = ""; jLastInsertID = ""; jWorkCodes = ...
0
votes
1answer
17 views

Basic Syntax for passing a Scanner object as a Parameter in a Function

Here is what I wrote which is pretty basic : import java.util.Scanner; public class Projet { /** * @param args * @param Scanner */ public static void main(String[] args) { ...
-1
votes
1answer
39 views

Get variable from function [closed]

in simple oop , we get result from function like this <?php class A{ function geta(){ ..... $a=..; return $someresult;}} ?> to get result from function geta(), we just create new instance ...
1
vote
2answers
56 views

Do variables passed into functions accepting the base class still retain their most derived class?

For instance, consider: class Deriv : public Base {...}; ... bar(Deriv d); bar(Base b); foo(Base b) {bar(b);} ... Deriv x; foo(x); // does x get treated as Base for the bar() call // or ...
0
votes
1answer
20 views

Not all validation checks execute onsubmit.

Using a form and javascript to validate fields. Here is the code where I call the validation javascripts, all of which are in seperate documents but file path is specified. function validation() ...
-5
votes
1answer
161 views

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

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 ...
3
votes
2answers
31 views

Can you create functions with custom prototypes in JavaScript?

First of all, I don't want to add methods to Function.prototype. Doing that would make them available for all functions and that's not what I'm looking for. In JavaScript you can create objects with ...
0
votes
1answer
30 views

Proper function prefix notation

Not sure if this is the right place to post this question but: If I have a list of functions that I am listing in a spec doc, lets say MyObj_Func1 MyObj_Func2 MyObj_Func3 and so on but I just want ...
0
votes
2answers
30 views

Passing arrays of varying size to setters/functions in Php

I am relatively new to PHP and have searched quite extensively but can't quite figure out the solution to my problem. I am trying to figure out how to use setters in a class where the variable being ...
0
votes
1answer
44 views

Compilation is stuck on get()/getline() function

Here is my code. I'm trying to compare two *txt files... But then, when I try to compile this code, it becomes stuck on first get() function. I tried to change the numbers of characters stored in char ...
2
votes
2answers
43 views

how to use variables from one submit button by another submit button inside same form in php

In my php code, there is a form with multiple submit buttons inside and the variable of 1st form is allocated the value after clicking the submit button and similar for the second form by $_POST[]. ...
0
votes
4answers
47 views

Javascript module pattern : calling functions within nested function

I have code like that : var SEVERINU = SEVERINU || {}; SEVERINU.AutoGallery = { galleryImagesNames: new Array(), findImages: function () { var dirToResearch = this.galleryName; ...
1
vote
2answers
46 views

Trigger to select data from another table and then update it to the current table SQL Server

Please help me, I have a simple case that makes me little crazy, I have a table called PRODUCTS here is the structure create table PRODUCT ( ID_PRODUCT CHAR(5) primary key not null, NAME_PRODUCT ...
1
vote
6answers
51 views

(Python 2.7) Use a list as an argument in a function?

So I'm trying to learn Python using codecademy but I'm stuck. It's asking me to define a function that takes a list as an argument. This is the code I have: # Write your function below! def ...
3
votes
1answer
97 views

two functions on click in jquery

I have these two functions that i want to apply to the same click (i did have them both inside the click function with the same result... that the image toggle works every time but the show/hide ...
4
votes
5answers
90 views

What's the advantage to define some function out of class in python program [closed]

Why should functions be declared outside of the class they're used in in Python? For example, the following project on Github does this with its _hash, _task_from_taskline, and _tasklines_from_tasks ...
6
votes
1answer
143 views

Typeclass for functions with different numbers of arguments

In my simple Haskell DSL, I have the following functions to call other functions: callF :: forall a. (Typeable a) => (V a) -> (V a) callF fp@(V (FunP name)) = pack $ FunAppl (prettyV fp) [] ...
2
votes
3answers
48 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
2answers
32 views

Mysql convert an int to MAC

I have some data that converts which has a 2 columns one column has IP and it contains values which are integers.I used the following function in my mysql query.Is there a function i can use to to ...
0
votes
0answers
4 views

pyqt calling a function in a second window

I'm new to pyqt4 and have a question i have a test case two simple widget windows the first one conatin 2 push button , one closes the window and the second open up a second window And this works ...
-2
votes
0answers
46 views

PHP passing variable amount of parameters to an anonymous function [closed]

Hi I am very new to all this and am working with Mysql and PHP. I would like to be able to create a function from variable names that are stored in a database as strings eg. database field ...
-4
votes
2answers
109 views

Why wont this loop work

def cut(path): test = str(foundfiles) newList = [s for s in test if test.endswith('.UnitTests.vbproj')] for m in newList: print m return newList This function parses through ...
0
votes
1answer
35 views

Defining a function pointer of an unspecified namespace

I'm making a simple developer console for a game I'm working on with a friend of mine. I'm working on binding functions to the console, so I have an std::map containing a string to hold the name ...
1
vote
2answers
34 views

VB.NET: Writing a function that take specific-type, multiple key-value parameters

I'm trying to write a function in a basic MVC (experimental project) that should be called with the following (or as close to): datastore = myTable.FetchData({{column1, constraint1}, ...
-3
votes
1answer
35 views

perl programming to make function calls

I want to call a function from my program.So can I save the function in another file instead of mixing with the script from where I am calling the function.If so ,with what name should I save the file ...
0
votes
1answer
22 views

Parsing bash function parameters

I have a bash function, say foo () I pass some parameters in a string like user=user1 pass=pwd address=addr1 other= Parameters may be missed or passed with random sequence I need to assign ...
0
votes
1answer
28 views

setTimeout does not work when put in sequence

I think I made a small typo or something like that, because something clearly doesn't work as it should. I want to change the ID's of two different divs, in a sequence. setTimeout(function() ...
1
vote
1answer
47 views

Building form that can be reused everywhere in HTML code

First of all I am a beginner-level UI developer. I have a form that I want to enable it several places in my code [it would be great if I can give this via js file so anyone can use it with few ...
0
votes
1answer
80 views

jquery Uncaught TypeError: Cannot read property 'options' of undefined (edited)

Hello I made a function for a simple drag and drop quiz. Everything works fine except for internet explorer ofcourse. In chrome console I get this error: Uncaught TypeError: Cannot read property ...
0
votes
0answers
11 views

Echo Forum Post Count On Wordpress Page

I've installed mingle-forum plugin onto my wordpress blog, and I want to echo out the post count for a specific forum id on a page in my blog. Any help would be appreciated. Ive tried including this ...
3
votes
4answers
40 views

Scope of variables in JavaScript, function does not return correct value

Good day, I've stumbled upon a trouble with scopes of variables in JS. I have a function like this var address = ...; //it may be or may not be defined earlier. // It is not the only variable passed ...
0
votes
2answers
25 views

Function called at the start of page loading - javascript

I have a problem; for some reason, my function is being called at the start of the webapplication while the page is loading. My code is as follows function validateName(element) { var len = ...
-1
votes
0answers
32 views

Pairs Formula function programming in R, upper, middle lower levels

I'm having a difficult time programming the pairs function in r, so i can setup upper, middle and lower panels of correlation, histogram and loess respectively. My panel Data looks like this: ...
-1
votes
0answers
67 views

What is wrong with PHP shuffle and array_push? [closed]

$this->current_set=$this->dbh->query("SELECT DISTINCT id FROM $database_name WHERE id != '".(string)$this->answer['id']."' ORDER BY rand() LIMIT 2;"); //$this->complete_set="" //echo ...
-1
votes
1answer
27 views

Unexpected T_Public on function.

I am trying to extend a background image control in the Wordpress theme customizer. I have been trying to get this code right and now that I think it should be working I am receiving an unexpected ...
0
votes
2answers
19 views

Is there a specific name for a function that takes its output as input and does that parameter have a name?

I work with a BASIC programming language and have found it useful to write functions that rely on their output as a parameter. Such as inOut = someFunction(inOut) I'd like to call this a ...
0
votes
0answers
38 views

Swipe.js getPos() and getNumSlides() help needed

I am currently using Swipe.js (https://github.com/bradbirdsall/Swipe/blob/master/README.md) for a carousel I am using for a website. I am a little new to this and could use some help. My code is below ...

1 3 4 5 6 7 375