vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   building a function with an optional argument (https://vborg.vbsupport.ru/showthread.php?t=91622)

sabret00the 07-04-2005 07:03 PM

building a function with an optional argument
 
how would i go about doing the above

PHP Code:

function getpiece($id FALSE)

    global 
$p;

    if (!
$p)
    {
        
$p intval($id); // if $p exists $id won't exist
    


how would i go about doing this?

Colin F 07-04-2005 07:13 PM

Quote:

Originally Posted by sabret00the
how would i go about doing the above

PHP Code:

function getpiece($id FALSE)

    global 
$p;

    if (!
$p)
    {
        
$p intval($id); // if $p exists $id won't exist
    


how would i go about doing this?

if, in the functions arguments, you define something with a =, it'll use that value if nothing is entered.

so you can do this:

PHP Code:

function foo($firstvar)
{


this
PHP Code:

function foo($firstvar 'standardvalue')
{


this
PHP Code:

function foo($firstvar 'standardvalue'$secondvar 'standardaswell')
{


this,
PHP Code:

function foo($firstvar$secondvar 'standard')
{


and so on.

Any arguments that are needed have to be at the beginning though.

Andreas 07-04-2005 07:14 PM

I don't understand your question?

sabret00the 07-04-2005 08:41 PM

basically i have the function getpiece

PHP Code:

function getpiece($id 'nothere')
{
    global 
$vboptions$stylevar$vbphrase$bgclass$DB_site$p;

    if (
$id != "nothere")
    {
        
$p $id;
    }

    
$getthepiece $DB_site->query_first("
        ## query ##
    "
);

return 
$getthepiece

most of the times i call getpiece() via
PHP Code:

$array getpiece(); // for this is uses the $p 

but i need to call it in another function with
PHP Code:

$array getpiece($pieceid); // because $p doesn't exist 


Andreas 07-04-2005 08:51 PM

I still don't get what you want, but maybe it's this:

PHP Code:

function getpiece()
{
    global 
$vboptions$stylevar$vbphrase$bgclass$DB_site$p;

    if (
func_num_args() > 0)
    {
        
// Called with Parameters, so we take the first parameter as $id
            
$id func_get_arg(0);
    }
    else
    {
        
// Called with no Parameters, so we take $p as $id
        
$id $p;
    }

        
$getthepiece $DB_site->query_first(


Paul M 07-04-2005 08:53 PM

Difficult to answer without seeing the query - does it pull some data based on the value of $p ?

Why don't you just make the first one ;

$array = getpiece($p);

and then just make the function return the appropiate data from the query using $id.

sabret00the 07-11-2005 08:58 AM

thanks all for your help, in the end i got it to work using function($var) for both calls


All times are GMT. The time now is 01:12 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01240 seconds
  • Memory Usage 1,747KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (10)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete