Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8221733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:02:01+00:00 2026-06-07T14:02:01+00:00

Possible Duplicate: PHP get all arguments as array? Well, In java I can do

  • 0

Possible Duplicate:
PHP get all arguments as array?

Well,

In java I can do this (pseudocode):

public hello( String..args ){
    value1 = args[0] 
    value2 = args[1] 
    ...
    valueN = arg[n];
}

and then:

hello('first', 'second', 'no', 'matter', 'the', 'size');

Is something like this in php?

EDIT

I now that I can pass an array like hello(array(bla, bla)), but may could exists the way mencioned above, right?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T14:02:07+00:00Added an answer on June 7, 2026 at 2:02 pm

    See func_get_args:

    function foo()
    {
        $numArgs = func_num_args();
    
        echo 'Number of arguments:' . $numArgs . "\n";
    
        if ($numArgs >= 2) {
            echo 'Second argument is: ' . func_get_arg(1) . "\n";
        }
    
        $args = func_get_args();
        foreach ($args as $index => $arg) {
            echo 'Argument' . $index . ' is ' . $arg . "\n";
    
            unset($args[$index]);
        }
    }
    
    foo(1, 2, 3);
    

    EDIT 1

    When you call foo(17, 20, 31) func_get_args() don’t know that the first argument represents the $first variable for example. When you know what each numeric index represents you can do this (or similar):

    function bar()
    {
        list($first, $second, $third) = func_get_args();
    
        return $first + $second + $third;
    }
    
    echo bar(10, 21, 37); // Output: 68
    

    If I want a specific variable, I can ommit the others one:

    function bar()
    {
        list($first, , $third) = func_get_args();
    
        return $first + $third;
    } 
    
    echo bar(10, 21, 37); // Output: 47
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: PHP get all arguments as array? Within a javascript function arguments always
Possible Duplicate: PHP get both array value and array key I am using Codeigniters'
Possible Duplicate: PHP Get end string on url between / and / I have
Possible Duplicate: PHP detecting request type (GET, POST, PUT or DELETE) This should be
Possible Duplicate: PHP ToString() equivalent I get this error: Catchable fatal error: Object of
Possible Duplicate: get name of current PHP script in include file Can an included
Possible Duplicate: How to get a variable name as a string in PHP? Example:
Possible Duplicate: How can I get an element's serialised HTML with PHP's DOMDocument? PHP
Possible Duplicate: Get current date and time in PHP I was wondering how can
Possible Duplicate: PHP REGEX: Get domain from URL I am working on a project

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.