GyaanSetu PHP

PHP, Laravel and WordPress.

28 articlesDeep, practical knowledge

Croatia’s 2026 E-Invoice Rule Forces PHP Apps to Rewrite 62 Validation Rules

From 1 January 2026 every B2B transaction in Croatia must pass a Schematron file written in XSLT 2.0, but PHP’s built-in libxslt only supports XSLT 1.0. Developers must either add a native Saxon-C extension, call an external service, or re-code the 62 checks in PHP to keep invoicing alive.

PHP · 4 min read

Cloudflare Workers Cut Video Site Thumbnail CPU to Zero

By moving thumbnail generation to Cloudflare Workers, the video-hosting platform eliminated all image-processing load on its origin servers, achieved a 96% edge cache hit rate, and consistently delivered sub-second image responses worldwide.

PHP · 3 min read

നിങ്ങളുടെ file exists() യഥാർത്ഥത്തിൽ ഒരു നെറ്റ്‌വർക്ക് കോൾ ആണ്

നിങ്ങളുടെ file exists() യഥാർത്ഥത്തിൽ ഒരു നെറ്റ്‌വർക്ക് കോൾ ആണ്. നിങ്ങൾ ഈ വരി ആയിരക്കണക്കിന് തവണ എഴുതാറുണ്ട്: if ( file exists( $path ) ) { ഇത് സുരക്ഷിതമാണെന്നും വേഗതയുള്ളതാണെന്നും തോന്നാം. എന്നാൽ $path ഒരു S3 ബക്കറ്റിലേക്കാണ് വിരൽ ചൂണ്ടുന്നതെങ്കിൽ...

PHP · 2 min read

PHP Adds Native Polling API, Giving Fibers OS-Level Speed

The newly merged Polling API wraps epoll, kqueue and IOCP, letting the event loop resume fibers with a single system call. Benchmarks show concurrency overhead drops to zero and CPU usage stays flat even with dozens of streams.

PHP · 3 min read