
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
Hi folks in this article I would like to share what is Method Chaining in PHP. I would like to tell my how I got fascinated to it and started to implement as much as possible in my daily life.
You will learn
Hope you might have come across the code like the following which is very fluent and simple to chain the method callbacks. Nowadays in most of the frameworks then do use it.
Example: Larvel - Eloquent, Codeigniter - ActiveRecords to mention some.
$rss->siteName('SiteName')
->siteUrl('https://siteurl.com')
->description('Some random description of the site')
->language('en-US') /** Default is en-Us you can set any of yours */
->lastUpdated($feedItems[0]['updatedAt']) /** Just pass datetime string or date string */
->generate($path, $rssItems, $filename);
OMG! Yes. Yup this is what method chaining
is, basically you chain the output of one method and add it as input to upcoming methods context.
Without method chaining you would have to keep it in many intermediate variables.
For example
$rss = new RSS();
$siteName = $rss->siteName('StackCoder');
$siteUrl = $rss->siteUrl('https://stackcoder.in');
Which may not be very wise. But there are also downsides of using Method Chaining stay tuned till last.
return $this
)Hope your now super excited to learn it. Lets start then with an example
class RSS{
public function siteName($siteName)
{
$this->siteName = $siteName;
/** Return the current context with $this */
return $this;
}
public function siteUrl($siteUrl)
{
$this->siteUrl = $siteUrl;
/** Return the current context with $this */
return $this;
}
}
In my RSS class I have siteName & siteUrl which I want to chain as follows
$rss = new RSS();
$rss->siteName('SiteName')
->siteUrl('https://siteurl.com');
This can be achieved by simply returning $this
in RSS
class methods siteName()
& siteUrl()
as shown in the above example.
Use method when you want simpler code. Never use between different classes, as it may increase the complexity for debugging.
Push Files To CPanel / Remote Server using FTP Software FileZilla
Unable to prepare route [{fallbackPlaceholder}] for serialization. Uses Closure In Laravel
Dependency Dropdowns With Javascript And PHP
Increase Session Timeout In Laravel
Install NGINX In Linux / Ubuntu And Managing
Testing Laravel Emails With MailHog
Sass or SCSS @function vs @mixin
Laravel Custom Maintenance Page
Factories To Speed Up Test-Driven Development In Laravel
Search Engine Optimization Concepts
Generate Fake Data In PHP With Faker