lumisys/open-graph-protocol-tools
Composer 安装命令:
composer require lumisys/open-graph-protocol-tools
包简介
Open Graph protocol
关键字:
README 文档
README
Open Graph protocol enhances information associated with a webpage through key-value pairs included as <meta> elements in your HTML. This additional data is consumed by social sharing sites, populating a story preview for shared links and referenced objects in the social graph.
This project includes tools to validate and sanitize inputs before generating Open Graph protocol markup on your webpages. This project standardizes outputs for easy indexing by consuming agents.
Consuming agents
Facebook indexes Open Graph protocol markup found on pages shared in a member's social news feed. This markup also enhances social news feed stories generated by the Like button social plugin and Facebook Share.
Open Graph protocol markup turns webpages into objects within the Facebook social graph, increasing search exposure and uniquely classifying your site and story type within the social news feed.
The Facebook Object Debugger displays a Facebook interpretation of your site's Open Graph protocol content.
mixi Check
Mixi indexes Open Graph protocol markup in its mixi Check social sharing service.
Google+ Snippet
Google indexes Open Graph protocol markup to populate a Google+ activity post.
Sample code
Core Open Graph protocol
Support for structured properties for image, video, and audio objects.
<?php $image = new OpenGraphProtocolImage(); $image->setURL( 'http://example.com/image.jpg' ); $image->setSecureURL( 'https://example.com/image.jpg' ); $image->setType( 'image/jpeg' ); $image->setWidth( 400 ); $image->setHeight( 300 ); $video = new OpenGraphProtocolVideo(); $video->setURL( 'http://example.com/video.swf' ); $video->setSecureURL( 'https://example.com/video.swf' ); $video->setType( OpenGraphProtocolVideo::extension_to_media_type( pathinfo( parse_url( $video->getURL(), PHP_URL_PATH ), PATHINFO_EXTENSION ) ) ); $video->setWidth( 500 ); $video->setHeight( 400 ); $audio = new OpenGraphProtocolAudio(); $audio->setURL( 'http://example.com/audio.mp3' ); $audio->setSecureURL( 'https://example.com/audio.mp3' ); $audio->setType('audio/mpeg'); ?>
Declare a new OpenGraphProtocol object and set some properties. Add structured media objects.
<?php $ogp = new OpenGraphProtocol(); $ogp->setLocale( 'en_US' ); $ogp->setSiteName( 'Happy place' ); $ogp->setTitle( 'Hello world' ); $ogp->setDescription( 'We make the world happy.' ); $ogp->setType( 'website' ); $ogp->setURL( 'http://example.com/' ); $ogp->setDeterminer( 'the' ); $ogp->addImage($image); $ogp->addAudio($audio); $ogp->addVideo($video); ?>
Output your OpenGraphProtocol object as HTML <meta> elements. Default configuration uses the property attribute from RDFa. Change to name if you prefer HTML specification compliance and consuming agents support the name attribute as a property fallback.
<?php $ogp->toHTML(); ?>
Global objects
Build global objects and attributes. Set time values using either an ISO 8601 formatted string or a DateTime object. DateTimes will be converted to the UTC timezone before output for consistency.
<?php $article = new OpenGraphProtocolArticle(); $article->setPublishedTime( '2011-11-03T01:23:45Z' ); $article->setModifiedTime( new DateTime( 'now', new DateTimeZone( 'America/Los_Angeles' ) ) ); $article->setExpirationTime( '2011-12-31T23:59:59+00:00' ); $article->setSection( 'Front page' ); $article->addTag( 'weather' ); $article->addTag( 'football' ); $article->addAuthor( 'http://example.com/author.html' ); ?>
Convert a global object to <meta> elements just as you would with OpenGraphProtocol.
<?php $article->toHTML(); ?>
Combined
A common use case might be storing Open Graph protocol objects in a Controller for use by your web application. You can add each object to an array and later iterate through the array for <head prefix=""> and <meta> outputs.
<?php $ogp_objects = array( $ogp, $article ); $prefix = ''; $meta = ''; foreach ( $ogp_objects as $ogp_object ) { $prefix .= $ogp_object::PREFIX . ': ' . $ogp_object::NS . ' '; $meta .= $ogp_object->toHTML() . PHP_EOL; } ?> <head prefix="<?php echo rtrim( $prefix,' ' ); ?>"> <?php echo rtrim( $meta, PHP_EOL ); ?> </head>
lumisys/open-graph-protocol-tools 适用场景与选型建议
lumisys/open-graph-protocol-tools 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 03 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「open graph」 「meta」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lumisys/open-graph-protocol-tools 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lumisys/open-graph-protocol-tools 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lumisys/open-graph-protocol-tools 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Netgen Open Graph Bundle is an Ibexa Platform bundle that allows simple integration with Open Graph protocol.
Harvest statistics and meta data from an URL or his source code (seo oriented).
Phalcon PHP Meta tags service
A SilverStripe module to optimise the Meta, crawling, indexing, and sharing of your website content (forked from Cyber-Duck/Silverstripe-SEO)
Help to manage meta data on Laravel Eloquent model
A simple, repeatable field type
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-03-29