meer-resultaten-van-pregmatch
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
function more_preg_match($regex,$string)
{
$return = array();
$loop = true;
while ($loop)
{
preg_match($regex,$string,$output);
if (empty($output))
{
$loop = false;
}
else
{
$return[] = $output[0];
$result = '';
for ($i = 0;$i < strlen($string);$i++)
{
if ($string[$i] == $output[0][0])
{
$found = true;
for ($x = 0;$x < strlen($output[0]);$x++)
{
if ($string[$i+$x] != $output[0][$x])
{
$found = false;
}
}
if ($found)
{
$i += strlen($output[0])-1;
$something = true;
}
else
{
$result .= $string[$i];
}
}
else
{
$result .= $string[$i];
}
}
$string = $result;
}
}
return $return;
}
?>
Voorbeeldje:
<?php
/*
Verkrijg alle linken uit een string.
*/
$string = '
<html>
<head>
<title>Linkjes! - http://www.deze.nl</title>
</head>
<body>
<a href="http://www.spele.nl">Spelen!</a><br>
Ga ook eens naar http://www.google.co.uk!<br>
<a href="http://www.phphulp.nl">Phphulp!</a>
</body>
</html>
';
echo '<pre><plaintext>'.$string.chr(10).chr(10);
$regex = '/http:\/\/(.*)\.(.*)\.((nl|be|com|co|uk|org)|(nl|be|com|co|uk|org)\.(nl|be|com|co|uk|org))/';
print_r(more_preg_match($regex,$string));
?>
function more_preg_match($regex,$string)
{
$return = array();
$loop = true;
while ($loop)
{
preg_match($regex,$string,$output);
if (empty($output))
{
$loop = false;
}
else
{
$return[] = $output[0];
$result = '';
for ($i = 0;$i < strlen($string);$i++)
{
if ($string[$i] == $output[0][0])
{
$found = true;
for ($x = 0;$x < strlen($output[0]);$x++)
{
if ($string[$i+$x] != $output[0][$x])
{
$found = false;
}
}
if ($found)
{
$i += strlen($output[0])-1;
$something = true;
}
else
{
$result .= $string[$i];
}
}
else
{
$result .= $string[$i];
}
}
$string = $result;
}
}
return $return;
}
?>
Voorbeeldje:
<?php
/*
Verkrijg alle linken uit een string.
*/
$string = '
<html>
<head>
<title>Linkjes! - http://www.deze.nl</title>
</head>
<body>
<a href="http://www.spele.nl">Spelen!</a><br>
Ga ook eens naar http://www.google.co.uk!<br>
<a href="http://www.phphulp.nl">Phphulp!</a>
</body>
</html>
';
echo '<pre><plaintext>'.$string.chr(10).chr(10);
$regex = '/http:\/\/(.*)\.(.*)\.((nl|be|com|co|uk|org)|(nl|be|com|co|uk|org)\.(nl|be|com|co|uk|org))/';
print_r(more_preg_match($regex,$string));
?>