vote up 4 vote down star

So I was thinking one way that you can bring method chaining into PHP with the built-in global functions would be to "borrow" the |> (pipe) operator from F#. It would pipe the results on the left into the first parameter of the function on the right. Of course PHP would have to revisit the parameter order of some of their functions.

This would allow you to write:

function StrManip($val) {  
  return str_repeat(strtolower(trim($val)),2);  
}

Like this:

function StrManip($val) {  
  return $val |> trim() |> strtolower() |> str_repeat(2);  
}
flag
Unfortunately this will very very much never happen :( – J Cooper Jan 23 at 6:37
So I guess the deeper question is do we need to bolt on idioms from other functional programming languages into every other language in existence. I would say no. – BobbyShaftoe Jan 23 at 6:37
Incidentally, this particularly thing is pretty easy in any of your run of the mill object oriented languages. – BobbyShaftoe Jan 23 at 6:38
BTW, I'm not sure about F#, but in Haskell the reason function chaining works at all, is because each function in reality takes one argument and returns one--even if that one is another function which requires another argument. PHP is obviously not built this way. – J Cooper Jan 23 at 6:39
And... this should probably be a community wiki, as there's no "right answer" – J Cooper Jan 23 at 6:45
show 2 more comments

5 Answers

vote up 7 vote down check

It looks like what he wants is a String class with methods that mirror the builtin functions. This is a guess, but maybe you could use the __call magic method to do the work like this:

(untested)

class String {
   private $_value = '';
   public function __construct($value) {
      $_value = $value;
   }
   public function __call ($name, $arguments) {
      return new String($name($_value, $arguments));
   }
}

$string = new String($string);
echo $string->trim()->strtolower()->str_repeat(2);

You would have to do some parsing to get the $arguments part to work, and it would create a lot of objects when you chain the methods, but in theory this should get you some functionality you are looking for.

link|flag
vote up 2 vote down

I've never seen that annotation before, but it sure looks nice. Somehow reminds me of functional programming (maybe it's just me).

But I've actually stopped hoping that the PHP group would make such fundamental changes to the language. They seem to play catch-up with other languages - they look at what other people are doing, and then they pick what they like, and what suits the(ir) PHP world. The object orientedness and namespaces, as examples, are quite recent features, when you look at the competition.

I, personally, have hoped to see named parameters (รก la "strpos(needle=$foo, haystack=$bar)") since I saw them in action in Python. Since then, the PHP design group has actually refused to implement it.

link|flag
to bad they refused them, they seem to make code more readable – Jacco Jan 23 at 11:20
I agree with the reasoning. I don't think named parameters a good thing. – BobbyShaftoe Jan 23 at 11:25
well, they would at least render the inconsistencies between functions' argument passing (see e.g. explode() vs strpos()) inconsequential. Instead of remembering which arguments to pass and in which order, you just need to know which arguments to pass. I guess this is a matter of taste, then. – Henrik Paul Jan 23 at 17:40
Agreed. I personally would like to have the option. – J Cooper Jan 23 at 19:13
vote up 2 vote down

Something much like that can be accomplished using fluent object methods. For example:

class Foo 
{
    public function bar()
    {
        echo 'Hello<br/>';
        return $this;
    }

    public function bar2()
    {
        echo 'Goodbye<br/>';
        return $this;
    }   
}

$foo = new Foo();

$foo->bar()->bar2();

Outputs the following:

Hello
Goodbye

link|flag
Yeah, but note that what he described is much more generic; this requires making a special class with methods with the appropriate side-effects each time – J Cooper Jan 23 at 6:53
An it requires PHP to go totally 100% OOP which they don't seem interested in doing. Or at least not designing in from the ground up. – B. Tyndall Jan 23 at 17:18
vote up 0 vote down

This is interesting. What about this solution?

function pipe($v, $fs)
{   
    foreach(explode('|', $fs) as $f)
    {
        if(strpos($f, '[') === FALSE){
            $v = call_user_func($f, $v);
        }else{
            list($fun, $args) = explode('[', trim($f), 2);
            $args = explode(',', str_replace('!', $v, substr($args, 0, -1)));
            $v = call_user_func_array($fun, $args);
        }
    }
    return $v;
}


echo pipe(' test STRING??', 'trim|strtolower|str_repeat[!,3]|str_replace[string,cheese,!]');

This prints out

test cheese??test cheese??test cheese??

The function pipe takes two arguments. The first is the initial value and the second is a pipe-delimited list of functions to which to apply to the first argument. To allow for multi-argument functions, the [ and ] characters can be used (like parentheses are used in PHP). The placeholder '!' can be used to specify where to insert the strings along the chain.

In the above example, the following happens:

trim(' test STRING??') => 'test STRING??'
strtolower('test STRING??') => 'test string??'
str_repeat('test string??', 3) => 'test string??test string??test string??'
str_replace('string', 'cheese', 'test string??test string??test string??') => 'test cheese??test cheese??test cheese??'

The characters [, ], and ! were chosen arbitrarily. Also, this doesn't allow you to use commas in the function arguments, although it could be expanded to allow this.

Interesting question!

(Idea for '|' delimited list of functions taken from Code Igniter, although they don't do variable replacement. It could also easily be a string array, but the array() constructor is verbose)

link|flag
I thought of this one myself but didn't write any code to test out the idea, but love what you did. I did not have the right ideas about how to do the params... my equivalent was pipe(' SomeThing ','trim|strtolower) ... I would only add quotes to the strings - see next comment – B. Tyndall Jan 24 at 6:53
echo pipe(' test STRING??', 'trim|strtolower|str_repeat[!,3]|str_replace["string","cheese",!]'); – B. Tyndall Jan 24 at 6:54
+1 - I'll have to look at what Code Igniter did in this respect. I have seen other frameworks like CakePHP use shortcut alias for certain functions to make function wrapping less ugly. – B. Tyndall Jan 24 at 6:56
I have also thought of using a shortcut function to create an object (like jQuery). But if you stack this object full of functions you pay a price for instantiating it. – B. Tyndall Jan 24 at 6:58
vote up 0 vote down

I fail to see how

function StrManip($val) {  
    return $val |> trim() |> strtolower() |> str_repeat(2);  
}

is any more readable than

function StrManip($val) {  
    return str_repeat( strtolower( trim($val) ), 2 );  
}

It's all a matter of what you're used to reading. Well-written PHP is already quite readable to people who program in PHP on a regular basis (this is true of any language). I don't think that adding even more syntax to an already bloated language is going to help. They really need to start taking things away.

link|flag
The idea would be to clean up the existing functions, and to bring a method calling-like syntax to non-objects. I think I'm being exposed to languages that have opened my eyes to alternatives to the "wrapping" syntax. But I do understand that some people may not like it. – B. Tyndall Jan 24 at 6:48
It's not that I don't like that syntax, I'd just hate to see the two mixed in one program, which is inevitable if the two are mixed in one language. Too many alternative syntaxes for the same thing just serve to make a language harder to learn and harder to read. – Bill the Lizard Jan 24 at 16:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.