php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "preg_split()"

In PHP, what are some common techniques or functions used to manipulate and extract data from strings with specific patterns or structures?

When working with strings in PHP, common techniques to manipulate and extract data from strings with specific patterns or structures include using reg...

How can regular expressions be used to allow for multiple delimiters when splitting words in PHP?

When splitting words in PHP, regular expressions can be used to allow for multiple delimiters by using the `preg_split()` function with a regex patter...

What are some best practices for handling string manipulation in PHP to avoid deprecated functions like split()?

To avoid using deprecated functions like split() in PHP for string manipulation, it is recommended to use alternative functions such as explode() or p...

What are some best practices for handling warnings related to split() function in PHP?

When using the split() function in PHP, it is important to handle warnings that may arise due to its deprecated status. To address this issue, you can...

What are some alternative methods or functions in PHP that can be used to achieve the same result as the split function mentioned in the thread?

The split function has been deprecated in PHP 7.0 and removed in PHP 7.3. To achieve the same result as the split function, you can use alternative me...

Showing 86 to 90 of 222 results

‹ 1 2 ... 15 16 17 18 19 20 21 ... 44 45 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.