jwebkid/metahelper
Composer 安装命令:
composer require jwebkid/metahelper
包简介
This is a library which helps web developers to better manage Open Graph, Twitter Cards and HTML Meta Data which are important for Search Engine Optimization.
README 文档
README
#MetaHelper
This is a library which helps web developers to better manage Open Graph, Twitter Cards and HTML Meta Data enabling them to implement Search Engine Optimization easier.
##Installation
Add the package to your composer.json and run composer update in your shell.
{
require: {
"jwebkid/metahelper": "dev-master"
}
}
If you use Laravel you may also add an alias in your app/config/app.php file:
'aliases' => array(
'App' => 'Illuminate\Support\Facades\App',
'Artisan' => 'Illuminate\Support\Facades\Artisan',
'Auth' => 'Illuminate\Support\Facades\Auth',
'Blade' => 'Illuminate\Support\Facades\Blade',
...
'MetaHelper' => 'JWebKid\MetaHelper'
),
##Quick Start ###Example 1 title("MetaHelper Rocks") ->description("A small description...") ->charset("UTF-8) ->view(); ?> ...
##Meta Data
MetaHelper library cater for the following meta tags:
| Meta Tag | Default Value | HTML Displayed | Syntax |
|---|---|---|---|
| Title | null | <title></title> |
$helper->title("") |
| Description | null | <meta name="description" content="" /> |
$helper->description("") |
| charset | UTF-8 | <meta charset=""/> |
$helper->charset("") |
| Next | null | <link rel="next" href="" /> |
$helper->next("") |
| Prev | null | <link rel="prev" href="" /> |
$helper->prev("") |
| Canonical | null | <link rel="canonical" href="" /> |
$helper->canonical("") |
##Open Graph
As mentioned, you can easily use MetaHelper to display Open Graph information about your web page.
<?php
$ogConfig = array(
'title' => 'MetaHelper Rocks',
'type' => 'website',
'image' => array(
'url' => 'http://example.com/logo.png',
'secure_url' => 'https://example.com/logo.png',
'type' => 'image/jpeg',
'width' => '300',
'height' => '500'
)
);
$metaHelper->og($ogConfig)->view();
This would display the following meta tags:
<meta charset="UTF-8"><meta property="og:title" content="MetaHelper Rocks">
`<meta property="og:type" content="website">`
`<meta property="og:image:url" content="http://example.com/logo.png">`
`<meta property="og:image:secure_url" content="https://example.com/logo.png">`
`<meta property="og:image:type" content="image/jpeg">`
`<meta property="og:image:width" content="300">`
`<meta property="og:image:height" content="500">`
##Twitter Cards
Finally MetaHelper can also take care of Twitter Cards. MetaHelper caters for all the different cards which Twitter Cards provide (Summery Card, Summery Image Card, Photo Card, Gallery Card, App Card, Product Card, Player Card).
###Summery Cards Example //To Create a Summery Card $metaHelper = new MetaHelper();
$metaHelper->card('SummerCard', [
'title' => 'This is a title',
'description' => 'This is a description',
'image' => 'http://example.com/logo.png',
]
);
//You can also change individual attributes
$metaHelper->setCard()->title("A New Title");
All attribute names of all the Twitter Cards available follow the below convention:
| Twitter Card Attribute Style | MetaHelper Style |
|---|---|
| twitter:app | $helper->app() |
| twitter:app:name:googleplay | $helper->appNameGoogleplay |
The only exception is the Summery Card with Large Image where for its twitter:image:src the normal image attribuet is used.
| Twitter Card | MetaHelper Keyword |
|---|---|
| Summery Card | SummeryCard |
| Summery With Large Image Card | SummeryImageCard |
| Gallery Card | GalleryCard |
| Photo Card | PhotoCard |
| Player Card | PlayerCard |
| App Card | AppCard |
| Product Card | ProductCard |
It is important to keep in mind that all of these meta data can be used together like so:
<?php
$metaHelper = new MetaHelper();
$metaHelper->title("Title")
->description("A description")
->card("SummeryCard", ["title"])
->og(["Title" => "title])
->view();
jwebkid/metahelper 适用场景与选型建议
jwebkid/metahelper 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.37k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2014 年 07 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「twitter」 「seo」 「tags」 「og」 「open graph」 「meta」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jwebkid/metahelper 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jwebkid/metahelper 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jwebkid/metahelper 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Handles basic OAuth/OAuth2 authentication along with classes for common services
Simple Twitter API wrapper
A powerfull cacher based on laravels file cache driver
Simple Sharing generates social media share links within CP entry pages, allowing you to quickly & easily share entries.
Phalcon PHP Meta tags service
Help to manage meta data on Laravel Eloquent model
统计信息
- 总下载量: 4.37k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-07