Function Prototype and arguments

Variable number of function arguments

3 || getParameters(ht,arg_count,&arg1,&arg2,&arg3)==FAILURE) { WRONG_PARAM_COUNT; } ')?>

Using the function arguments

   For type IS_STRING, use arg1->value.str.val
            IS_LONG        arg1->value.lval
            IS_DOUBLE      arg1->value.dval

PHP Symbol Tables

Setting variables in the PHP symbol table

value arg must be emalloc'ed - no static memory!

Creating an empty array named foo

Create $foo["bar"] = 5

Returning values from functions

Returning an array from a function