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 8402303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:01:14+00:00 2026-06-09T22:01:14+00:00

I was just going through the curl library for codeigniter to understand the code.

  • 0

I was just going through the curl library for codeigniter to understand the code. Here is the link. There is this function __call() which I am not sure about. Is it an inbuilt function in CI? I suppose it is called whenever any method of this library is called, for example using

$this->curl->simple_get();

Can someone please shed the light. I couldn’t find much info on the codeigniter user guide.

  • 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-09T22:01:15+00:00Added an answer on June 9, 2026 at 10:01 pm

    No – __call() is a php function. It is known as one of the magic methods.

    The magic method __call() is to undeclared methods what __get() and __set() are to undeclared data member.

    These methods are automatically called internally when the program tires to execute a method that has not been defined within the class at the time of development.

    __call() takes two arguments. The first argument is the name of the undeclared method invoked by the program and the second is an array that contains a list of parameters passed to the undeclared array

    • check http://www.php.net/manual/en/language.oop5.overloading.php#object.call

    Example

    class Customer {
    
        public function __call($name, $args) {
            var_dump($name);
            echo "\n";
            var_dump($args);
            echo "\n";
        }
    }
    
    $c = new Customer();
    $c->setName("some","name");
    

    Ref

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there isn't enough validation in here just going through some testing. $result
I was just going through one code used to draw one chart. This code
I was just going through certain code which are frequently asked in interviews. I
Just going through the sample Scala code on Scala website, but encountered an annoying
I was just going through glibc manual for description about posix_memalign function when I
I was just going through all the Mathematical stuff which is used in programming.
I've just finished going through the MvcMusicStore tutorial found here . It's an excellent
I'm just going through perlxstut and I found there newSVnv in EXAMPLE 5 and
I was just going through certain interview questions. Got this structure related issue, I
I was just going through some code and was wondering if it is bad

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.