ID: 13988 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Unknown/Other Function Operating System: Windows 98 first edition PHP Version: 4.0.6 New Comment:
All your example html files are buggy: <meta name="description" content"ciao ciao"> Note the missing '=' after content? --Jani Previous Comments: ------------------------------------------------------------------------ [2001-11-12 05:11:15] [EMAIL PROTECTED] Yes, it happens with 4.0.6. ------------------------------------------------------------------------ [2001-11-09 09:43:31] [EMAIL PROTECTED] Reopen if this happens with PHP 4.0.6 ------------------------------------------------------------------------ [2001-11-08 04:09:22] [EMAIL PROTECTED] Example: pippo.html etc etc <title>Il mio nome e' pippo</title> <meta name="description" content"ciao ciao"> etc pippo.php $tags = get_meta_tags("pippo.html"); echo $tags['description']; Case A) Failed <title>Il mio nome e' pippo</title> <meta name="description" content"ciao ciao"> echo $tags['description'], echos nothing Case B) OK <meta name="description" content"ciao ciao"> <title>Il mio nome e' pippo</title> $tags['description'], echos ciao ciao Case C) OK, I remove the character ' <title>Il mio nome est pippo</title> <meta name="description" content"ciao ciao"> $tags['description'], echos ciao ciao SUMMARY: It seems there is a problem of get_meta_tags parsing the meta from an html file. The problem is the ' character. If it is contained inside a tag title before a meta then get_meta_tags fails. If the title tag with the ' character is put after the meta, then it works. If I delete the ' character then it works always. ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=13988&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]