|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-06-29 03:18 UTC] teocl at globalsources dot com
get_meta_tags will get nothing when this statics file is used.(please see the code down there) Only when the single quote inside the title tag removed, then the meta will be retrieved. I have tried to use this code inside PHP Version 4.0.4, and it works. Does anyone has any clue about it? <html> <head> <TITLE>Sanmina acquires Alcatel's manufacturing operations in Texas</TITLE> <META NAME="VERSION" CONTENT="2.1"/> <META NAME="ISSUE" CONTENT="121345"/> <META NAME="STARTDATE" CONTENT="27-JUN-2001"/> </head> </html> Thanks. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 16:00:01 2025 UTC |
From the ChangeLog: 2001-03-06 Sean Bright <elixer@erols.com> * ext/standard/file.c: Typo. * ext/standard/file.c: get_meta_tags now allows attributes that are not quoted as well as those that are. It follows the HTML 4.01 specification for attribute values outlined here -> http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.2 You could have checked this yourself BTW. Derick