subfolders tellen van een URL
Daniel van Seggelen
14/01/2025 15:44:44PHP hulp
15/01/2025 02:21:27Met parse_url() is de beste oplossing:
Ozzie PHP
14/01/2025 21:45:14Daniel van Seggelen op 14/01/2025 15:44:44:
Uit nieuwsgierigheid ... waarom wil je folders tellen?
Ivo P
14/01/2025 22:21:20ik zou ipv explode() substr_count() inzetten
want is toch zonde om er een heel array van te bouwen.
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?php
$url = "https://test.nl/f1/f2/f3/f4";
$parsedUrl = parse_url($url);
$path = $parsedUrl['path'] ?? '';
$aantal = substr_count(trim($path, '/'), '/') + 1;
echo $aantal;
?>
$url = "https://test.nl/f1/f2/f3/f4";
$parsedUrl = parse_url($url);
$path = $parsedUrl['path'] ?? '';
$aantal = substr_count(trim($path, '/'), '/') + 1;
echo $aantal;
?>
want is toch zonde om er een heel array van te bouwen.