https://www.vultr.com

The Everywhere Cloud

Deploy an instance.
Accelerate your application.


Replacing split() with preg_split() in PHP


After upgrading PHP, some scripts such as those used in old Drupal systems may report the fatal error "undefined function split()" due to the function's deprecation and removal. Simply replace it with preg_split() to solve the problem.

==========

1. Find the split() function.

split($pattern, $subject);

2. Convert it to the preg_match() function as shown.

preg_split("/".$pattern."/", $subject);

==========

Comments

Popular posts from this blog

Enabling HTTPS in Home Assistant

Configuring the FreeBSD Firewall with IPFW

Running Home Assistant on FreeBSD Servers