Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


In this PHP 7 tutorial, we are going to learn how to concatenate String, Variable and Arrays in PHP. The concatenate term in PHP refers to joining multiple stri...
I could convert a variable to string in PHP with my eyes shut. Jokes apart, PHP provides lots of pre-built function to deal with string conversion, we are going...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
The APCu Backwards Compatibility (apcu-bc) plugin include the backward compatibility with APC PHP 7+ apcu-bc plugin came into existence since PHP 7.0, since APC...
PHP’s implode() function takes array as a value and returns a string. Implode function takes 2 parameters seprator and $array let’s find out how it works?
In order to include object caching functionality in PHP 7.0, The APCu extension is used. Earlier APC extension was used, but it has been replaced by APCu nowada...
On one hand, caching strategies can offer considerable gains in performance. On the other hand, those gains may be at the cost of increased complexity within th...
Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future. Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future.

blog.jim-nielsen.com

Examples of Great URL Design
URLs are universal. They work in Firefox, Chrome, Safari, Internet Explorer, cURL, wget, your iPhone, Android and even written down on sticky notes. They are th...

stitcher.io

Passion projects
Do you remember when you fell in love with programming? It probably wasn't while you were learning code at school or online, or working on a client project. You...
↗ How Jim Nielsen takes & publishes notes #blogging / blog.jim-nielsen.com I always enjoy reading about other people's processes.
Being online, I've gotten the impression that two groups of PHP developers are seriously divided: there are Symfony devs saying that Laravel is a hacky framewor...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.

sebastiandedeyne.com

Cleaning up package.json keys
I'm in the process of cleaning up some npm packages that haven't been touched in a while, and part of that is pruning all the cruft that has been accumulated in...
Ensuring your API remains consistent and reliable is akin to keeping a ship steady during a storm. As your application grows and changes, so too does the need t...
class User { const NAME = 'Paul'; } class User { const NAME = 'Paul'; } $searchableConstant = 'NAME'; var_dump(User::{$searchableConstant}); class PHP { public...
Starting from Node.js v20.6.0, Node.js supports .env files for configuring environment variables. Previously you would need to use a package called dotenv to lo...