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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:39:02+00:00 2026-05-30T02:39:02+00:00

Possible Duplicate: PHP method chaining? I occasionally see some php applications use classes like

  • 0

Possible Duplicate:
PHP method chaining?

I occasionally see some php applications use classes like that:

$Obj = new Obj();
$Obj->selectFile('datafile.ext')->getDATA();

The example above gets the contents of the selected file then returns them ( just an example );

Well, before i decided to ask you how can I do this, I tried this:

class Someclass {
    public function selectFile( $filename  ) { 
       $callAclass = new AnotherClass( $filename );
       return $callAclass;
    }

    // Other functions ...
}

class AnotherClass {
    protected $file_name;

    public function __construct ( $filename ) { $this->file_name = $filename; }
    public function getDATA ( ) {
        $data = file_get_contents( $this->file_name );
        return $data;

    } 

    // funcs , funcs, funcs ....

}

Is that the right way to accomplish this task? And please tell me what these classes are called.

  • 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-30T02:39:05+00:00Added an answer on May 30, 2026 at 2:39 am

    It’s called method chaining. Have a look at this question on SO.

    Here’s a way you can do what you’re trying to achieve:

    class File 
    {
        protected $_fileName;
    
        public function selectFile($filename) 
        { 
            $this->_fileName = $filename; 
            return $this;
        }
    
        public function getData()
        {
            return file_get_contents($this->_fileName);
        }
    }
    
    
    $file = new File();
    echo $file->selectFile('hello.txt')->getData();
    

    Notice we return $this in the selectFile, this enables us to chain another method onto it.

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

Sidebar

Related Questions

Possible Duplicate: PHP method chaining? I had a function for create user, like cruser
Possible Duplicate: PHP method chaining? So I can remember seeing in some code examples
Possible Duplicate: Best way to use PHP to encrypt and decrypt? I am new
Possible Duplicate: php multi-dimensional array remove duplicate I have an array like this: $a
Possible Duplicate: Call php function from javascript I understand that php is server side
Possible Duplicate: php validate integer Currently I'm using this method: Validate the input using
Possible Duplicate: What is the best method to merge two PHP objects? I have
Possible Duplicate: Avoid resending forms on php pages Index.html <form method=post action=demo.php> <input type=text
Possible Duplicate: When to use static vs instantiated classes I'm having a little trouble
Possible Duplicate: In PHP, can you instantiate an object and call a method on

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.