Last active
August 29, 2015 14:10
-
-
Save StoneCypher/e33c3293dc5395c124b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $wiki_line = array( | |
| array( | |
| 'type' => 'http://schema.org/Person', | |
| 'data' => array( | |
| 'name' => 'John Doe', | |
| 'jobTitle' => 'graduate research assistant', | |
| 'affiliation' => 'University of Dreams', | |
| 'additionalName' => 'Johnny', | |
| 'url' => 'http://www.johnnyd.com/', | |
| 'address' => 'Item(1)' | |
| ) | |
| ), | |
| array( | |
| 'type' => 'http://schema.org/PostalAddress', | |
| 'data' => array( | |
| 'streetAddress' => '1234 Peach Drive' | |
| 'addressLocality' => 'Warner Robins' | |
| 'addressRegion' => 'Georgia' | |
| ) | |
| ) | |
| ); | |
| $wiki_deep = array( | |
| array( | |
| 'type' => 'http://schema.org/Person', | |
| 'data' => array( | |
| 'name' => 'John Doe', | |
| 'jobTitle' => 'graduate research assistant', | |
| 'affiliation' => 'University of Dreams', | |
| 'additionalName' => 'Johnny', | |
| 'url' => 'http://www.johnnyd.com/', | |
| 'address' => array( | |
| 'type' => 'http://schema.org/PostalAddress', | |
| 'data' => array( | |
| 'streetAddress' => '1234 Peach Drive' | |
| 'addressLocality' => 'Warner Robins' | |
| 'addressRegion' => 'Georgia' | |
| ) | |
| ) | |
| ) | |
| ) | |
| ); | |
| ?> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
should produce the example from http://en.wikipedia.org/wiki/Microdata_%28HTML%29#Example when used with https://gist.github.com/StoneCypher/5dee178e9fbfda26ea08
haven't actually tried it, probably buggy