mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
7 lines
155 B
PHP
7 lines
155 B
PHP
<?php
|
|
use function Safe\preg_replace;
|
|
|
|
$x = preg_replace('/foo/', 'bar', 'baz');
|
|
$y = stripos($x, 'foo');
|
|
|
|
$x = preg_replace(['/foo/'], ['bar'], ['baz']);
|