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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:36:43+00:00 2026-05-16T00:36:43+00:00

I like the way in C# where you can write an extension method, and

  • 0

I like the way in C# where you can write an extension method, and then do things like this:

string ourString = "hello";
ourString.MyExtension("another");

or even

"hello".MyExtention("another");

Is there a way to have similar behavior in PHP?

  • 1 1 Answer
  • 1 View
  • 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-16T00:36:44+00:00Added an answer on May 16, 2026 at 12:36 am

    You could if you reimplemented all your strings as objects.

    class MyString {
        ...
        function foo () { ... }
    }
    
    $str = new MyString('Bar');
    $str->foo('baz');
    

    But you really wouldn’t want to do this. PHP simply isn’t an object oriented language at its core, strings are just primitive types and have no methods.

    The 'Bar'->foo('baz') syntax is impossible to achieve in PHP without extending the core engine (which is not something you want to get into either, at least not for this purpose :)).


    There’s also nothing about extending the functionality of an object that makes it inherently better than simply writing a new function which accepts a primitive. In other words, the PHP equivalent to

    "hello".MyExtention("another");
    

    is

    my_extension("hello", "another");
    

    For all intends and purposes it has the same functionality, just different syntax.

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

Sidebar

Related Questions

I would like to write an extension method for a generic type, with additional
I want to generate custom methods in Eclipse like the way we can generate
in what way can I output the reference of an object in memory. Like:
Is there any way can declare a bean in just like JSP UseBean in
I would like to know a way can detect on how long the mouse
Is there any way I can get a share picker like the one seen
Is there any way I can create a UAC-like environment in Python? I want
is there a way l can compare two columns | fields in django like
Is there a way I can detect an image URL, like: http://mysite.com/image.jpg but with
Is there any way I can send an email, like any frameworks or something.

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.