[PHP-DEV] Re: Request RFC karma

2019-06-14 Thread Steven Penny
I did that before sending the email... On Fri, Jun 14, 2019 at 2:17 AM Christoph M. Becker wrote: > > On 14.06.2019 at 01:11, Steven Penny wrote: > > > please and thank you > > > > https://github.com/php/php-src/pull/3918 > > Please register as Wiki user: <

[PHP-DEV] Request RFC karma

2019-06-13 Thread Steven Penny
please and thank you https://github.com/php/php-src/pull/3918 -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] print with newline

2019-03-04 Thread Steven Penny
On Mon, 04 Mar 2019 02:23:46, Peter Kokot wrote: Now, interesting is that in bash and some langs (where the main environment is CLI), there is by default newline echoed. In PHP and other languages there isn't. Changing default functionality of echo in PHP is like changing left-hand traffic countr

Re: [PHP-DEV] print with newline

2019-03-03 Thread Steven Penny
On Mon, 04 Mar 2019 01:58:35, Stanislav Malyshev wrote: It does not matter what you did before. It's not a "who spit on whom first" discussion in a kindergarten. It's "you don't use this kind of language here, period" discussion on this list. If you can't abide by that, please use some other list

Re: [PHP-DEV] print with newline

2019-03-03 Thread Steven Penny
On Mon, 04 Mar 2019 00:44:59, Stanislav Malyshev wrote: Please avoid such language on the list. This is not Twitter and not any other forum where such things are welcome. If you can't keep yourself within the bounds of civilized discussion, you probably should consider using some other forum or d

Re: [PHP-DEV] print with newline

2019-03-03 Thread Steven Penny
On Mon, 04 Mar 2019 00:19:32, Sara Golemon wrote: My apologies, I was obviously not being clear. What I should have said is that your request is bad and you should feel bad. Hope that clears things up! My apologies, I was obviously not being clear. What I should have said is fuck yourself. Ho

Re: [PHP-DEV] print with newline

2019-03-03 Thread Steven Penny
On Sun, 03 Mar 2019 06:49:25, Joe Watkins wrote: Jokes aside, this is so trivially achievable in userland that there is no justification whatever for an internal function or functions, or constructs, or opcodes. if thats the case we better go ahead and remove these in favor of "base_convert":

Re: [PHP-DEV] print with newline

2019-03-02 Thread Steven Penny
On Sun, 03 Mar 2019 04:47:10, Legale Legage wrote: You trеw the bait with no luck. If you didn't get the hint. Your request have extremely low probability of acceptance. Try something else. how about you dont tell me what to try, and i dont tell you how to spell "took". deal? -- PHP Internal

Re: [PHP-DEV] print with newline

2019-03-02 Thread Steven Penny
On Sun, 03 Mar 2019 03:36:50, Sara Golemon wrote: function println(string $x): void { echo $x, PHP_EOL; } I hereby grant a public domain license to the above code and wish you godspeed bundling it into a composer package to be enjoyed by users of every active version of PHP. my request was not

Re: [PHP-DEV] print with newline

2019-03-02 Thread Steven Penny
On Sat, 02 Mar 2019 22:15:49, johannes schlueters wrote: PHP's echo has the option already: echo $foo, PHP_EOL; not much difference i effort to writing print $foo, true; except that the code is explicit. my request was not "how to print a newline with PHP". the request is for PHP to impleme

[PHP-DEV] print with newline

2019-03-02 Thread Steven Penny
with PHP, several methods are available to produce output: echo "hello world\n"; print "hello world\n"; print_r("hello world\n"); var_export("hello world\n"); However all these methods have something in common: they do not produce their own newline. With each method, the user is requ