Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 23 bytes) in /mnt/atlas/web/react/got/react/global/non-www/classes/rml_advanced.class.inc.php on line 1508
Hoe ontstond het :
Oorzaak :
De enorme niet numerike waarde bij de php tag.
FF zorgen dat in controleert op is_int() ofzo.
Hoe ontstond het :
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| [php=83274683333264833232]
function isURL($url){
$isUrl = FALSE;
if ( $url != '' ){
if (!preg_match('#^http:\/\/#i', $url) ){
$url = 'http://' . $url;
}
if (preg_match('#^http\\:\\/\\/[a-z0-9\-]+\.([a-z0-9\-]+\.)?[a-z]+#i', $url) ){
$isURL = TRUE;
}
}
return $isURL;
}
[/php] |
Oorzaak :
De enorme niet numerike waarde bij de php tag.
FF zorgen dat in controleert op is_int() ofzo.