P
P
Platton2015-12-20 16:51:52
PHP
Platton, 2015-12-20 16:51:52

How to split strings in php?

Hello. Tell me what php functions to use to break the request url strings.
For example, there are url patches like this:
/category/page.html
/page3.html
/category1/category2/
/category/
I need to get an array containing a sequential hierarchy of the url request.
For example, there is a line: /category1/category2/page.html
You need to get an array:
Array (
[0] => "/category1/",
[1] => "/category1/category2/",
[2] => "/category1 /category2/page.html"
)
or
/category1/category2/
Array (
[0] => "/category1/",
[1] => "
)

Answer the question

In order to leave comments, you need to log in

4 answer(s)
C
Cat Anton, 2015-12-20
@27cm

$str = '/category1/category2/page.html';

$parts = preg_split('/(?<=\w\/)(?=\w)/', $str, -1, PREG_SPLIT_NO_EMPTY);
for ($i = 1; $i < sizeof($parts); $i++) {
    $parts[$i] = $parts[$i - 1] . $parts[$i];
}

ideone.com/5usIN4

A
Andrey, 2015-12-20
@VladimirAndreev

You can't get this with regular means

Y
Yuri, 2015-12-20
@riky

$str = '/category1/category2/page.html';
$items = explode("/", $str);
$result = [];
for ($i = 1; $i < count($items); $i++) {
    $result[] = implode("/", array_slice($items, 0, $i));
}

The code needs some work, but in general it's possible

E
Evgeny Bukharev, 2015-12-20
@evgenybuckharev

Examine the preg_match function, there are 3 $matches parameters, and you will receive a sequential url request hierarchy into it.

if (preg_match('%^(\w+.*)/(\d+)-(\w+.*).html$%', $pathInfo, $matches)) {
            $params['calias'] = $matches[1];
            $params['id'] = $matches[2];
            $params['alias'] = $matches[3];
        }

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question