Sushil Kumar

@CodeWithSushil
5 Followers
33 Following
66 Posts
A self-taught πŸ•ΈοΈ Web Developer πŸ‘¨πŸ»β€πŸ’» || Linux 🐧 Lover || Open source 🌐 contributor πŸ‘₯ || PHP/Laravel 🐘 and JS fanboyπŸ‘¦πŸ»
InstagramCodeWithSushil
GithubCodeWithSushil
X/TwitterCodeSushil
Websitecodewithsushil.github.io

I finally solved my Composer hanging/stuck issue πŸš€
Set up a local proxy server and routed downloads using PHP stream functions.

Added real-time debugging with log files to trace where it was freezing.

Result: smooth installs, zero guesswork 😌

#PHP #composer #packagist #proxy

πŸ“£ Announcing the immediate availability of:

- PHP 8.1.34
- PHP 8.2.30
- PHP 8.3.29
- PHP 8.4.16
- PHP 8.5.1

‼️ These address the following security issues:

- PDO quoting result null deref
- Null byte termination in dns_get_record()
- Heap buffer overflow in array_merge()
- Information Leak of Memory in getimagesize()

πŸ“ https://www.php.net/ChangeLog-8.php
🎁 https://www.php.net/downloads
 https://windows.php.net/download/

#PHP #Release

PHP: PHP 8 ChangeLog

PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

πŸ₯³ PHP 8.5 Released!

In this new release, we have:

🌐 URI Extension
▢️ Pipe Operator
πŸ“‘ Clone With
⚠️ A New #[\NoDiscard] Attribute
πŸ†• Closures and First-Class Callables in Constant Expressions
πŸŒ€ Persistent cURL Share Handles

πŸ‘“ Read all about it on: https://www.php.net/releases/8.5/

πŸ”— https://php.net/ChangeLog-8#8.5.0
πŸ“¦ https://php.net/downloads

#PHP #PHP85 #Release

PHP: PHP 8.5 Release Announcement

PHP 8.5 is a major update of the PHP language, with new features including the URI Extension, Pipe Operator, and support for modifying properties while cloning.

What is Pipe operator in php ?

#php
#PipeOperator

After watching Puni & Nuno, I realised something: JavaScript grew because the community made small, fun, interactive projects. PHP needs more creators like them to inspire the next generation. Let’s make PHP fun again!

#PHP
#JavaScript
#Nodejs

My first PHP and SQLite based dynamic website host on Render (free SSL), but it is my experimental journey with a subdomain so visit my portfolio: https://my-portfolio-154a.onrender.com
My Portfolio

Clove php πŸ€ 🐘
Ship Push Notifications in NativePHP (Laravel) on iOS & Android – End-to-End Guide

YouTube

6 PHP Project Idea πŸ’‘:
Stage 1: Authentication (login/register)
Stage 2: users management system
Stage 3: Real-Time Chat App
Stage 4: E-commerce(Payment integration/Real-time tracking)
Stage 5: AI integration(Chat GPT)
Stage 6: subscription based platform

#php
#roadmap
#connect

Better experience and fast, secure way to create a connection with MariaDB.

// Config.php

$mariadb = ini_get('pdo_mysql.default_socket');

$pdo = new PDO("mysql:unix_socket=$mariadb;dbname=test", 'root', '');

if($pdo){
echo "Database connection success!";
}

#php #mariadb #pdo #socket #mysql #mysqli #mysqlpdo