RSS Parrot

BETA

🦜 Exakat

@www.exakat.io@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Bring Quality to your PHP Projects

Your feed and you don't want it here? Just e-mail the birb.

Site URL: www.exakat.io/

Feed URL: www.exakat.io/feed

Posts: 6

Followers: 2

How to make emojis in PHP

Published: June 10, 2025 16:01

How to make emojis in PHP You might want to use emojis both in your online comments and your PHP code. The later, mostly to hander the former, although PHP handles emojis gracefully. That are the methods to make emojis in PHP? Straight in the code PHP…

1-2-3 PHP operators

Published: May 17, 2025 09:59

1-2-3 PHP operators I learnt my PHP on a European keyboard, and it was always a pain to use some strange symbols. When I moved to Canada, I quickly realized that the chosen symbols were actually very easily accessible on the keyboard: it was just my layout…

Quine in PHP : self displaying code

Published: April 24, 2025 20:21

Quines for PHP A quine is a piece of code that executes to produce itself. This is a self displaying code. The execution of the code outputs the same source code, before it was executed. No changes happened, and one may run it again, to the same result.…

PHP parentheses usage

Published: April 15, 2025 05:31

The Required, The Optional, The Useless, and The Weird: of In PHP, parentheses () aren’t just punctuation : they play different roles depending on where and how they’re used. Some are compulsory, others are optional, and a few are just useless clutter. And…

Speeding up ksort()

Published: April 1, 2025 05:30

Speed up ksort() ksort()is the PHP native function that sorts an array by its keys, while maintaining the relationship with the values. It has been in the language since the beginning (last millenium!), and yet, sometimes, it is interesting to ask again…

PHP error messages encyclopedia

Published: February 19, 2025 23:39

PHP Error Messages Encyclopedia If you’ve ever coded, you’ve likely encountered cryptic error messages that left you scratching your head. Whether it’s a syntax error, an unexpected function call issue, or a deprecated feature warning, debugging can be a…