preg_match meta name OR property

1.5k Views Asked by At

How to impliment an OR here to match meta with both name and property

$html = '<meta name="title" content="title here..">
         <meta name="keywords" content="keywords here..">
         <meta property="og:title" content="og title here..">'

preg_match_all('/<[\s]*meta[\s]*name="?' . '([^>"]*)"?[\s]*' . 'content="?([^>"]*)"?[\s]*[\/]?[\s]*>/si', $html, $match);

output

Array
(
    [0] => Array
        (
            [0] => <meta name="title" content="title here..">
            [1] => <meta name="keywords" content="keywords here..">
         // [2] <meta property="og:title" content="og title here..">
        )

    [1] => Array
        (
            [0] => title
            [1] => keywords
         // [2] => og:title
        )

    [2] => Array
        (
            [0] => title here..
            [1] => keywords here..
         // [2] => og title here..
        )

)
1

There are 1 best solutions below

1
On BEST ANSWER

As learned from the suggested link by @chris85, (name|property) will do this. My bad!

preg_match_all('/<[\s]*meta[\s]*(name|property)="?' . '([^>"]*)"?[\s]*' . 'content="?([^>"]*)"?[\s]*[\/]?[\s]*>/si', $html, $match);