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

  • Home
  • SEARCH
  • 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 565915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:55:21+00:00 2026-05-13T12:55:21+00:00

Is there a way to define a function in PHP that lets you define

  • 0

Is there a way to define a function in PHP that lets you define a variable amount of parameters?

in the language I am more familiar with it is like so:

function myFunction(...rest){ /* rest == array of params */ return rest.length; }

myFunction("foo","bar"); // returns 2;

Thanks!

  • 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-05-13T12:55:21+00:00Added an answer on May 13, 2026 at 12:55 pm

    Yes. Use func_num_args() and func_get_arg() to get the arguments:

    <?php
      function dynamic_args() {
          echo "Number of arguments: " . func_num_args() . "<br />";
          for($i = 0 ; $i < func_num_args(); $i++) {
              echo "Argument $i = " . func_get_arg($i) . "<br />";
          }
      }
    
      dynamic_args("a", "b", "c", "d", "e");
    ?>
    

    In PHP 5.6+ you can now use variadic functions:

    <?php
      function dynamic_args(...$args) {
          echo "Number of arguments: " . count($args) . "<br />";
          foreach ($args as $arg) {
              echo $arg . "<br />";
          }
      }
    
      dynamic_args("a", "b", "c", "d", "e");
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi All is there any way to locally define a variable in a function
Is there any way to define a variable that can be used in multiple
Is there a way to define custom codes (with messages/descriptions and whatnot) so that
I have a function language($tag) that requires a file lang.php which contains an array
I have a function that I would like to define in two different Perl
Is there any way that I can define a destructor for an object in
I've written a PHP function that can accept 10 parameters, but only 2 are
Is there some way to define an abstract type as a parameter in an
Is there a way to define a custom template for the no results view
is there any way to define objects in hibernate.cfg.xml by scope and not one

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.