Skip to content

Instantly share code, notes, and snippets.

@deltafactory
deltafactory / polyfills.php
Created December 4, 2024 20:51 — forked from num8er/polyfills.php
PHP 5.3 to 7.x migration polyfill collection.
<?php
namespace Polyfills
{
final class Ereg
{
public static function ereg($pattern, $string, &$regs = null)
{
if ($pattern === '' || $pattern === null) {
trigger_error('ereg(): REG_EMPTY', E_USER_WARNING);