123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- define('INSTALLDIR', dirname(__DIR__, 3));
- define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
- $shortoptions = 'u:';
- $longoptions = array('url=');
- $helptext = <<<END_OF_HELP
- poll_oembed.php --url URL
- Test oEmbed API on a URL.
- -u --url URL to try oEmbed against
- END_OF_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- if (!have_option('u', 'url')) {
- echo 'No URL given.';
- exit(1);
- }
- $url = get_option_value('u', 'url');
- print "Contacting URL\n";
- $oEmbed = EmbedHelper::getObject($url);
- var_dump($oEmbed);
- print "\nDONE.\n";
|