mh/pageseo

一个保持SEO标签整洁的实用库

1.0.6 2019-10-08 19:35 UTC

This package is auto-updated.

Last update: 2024-09-09 06:46:39 UTC


README

这是一个保持您的SEO标签整洁的实用工具包。

Build Status Scrutinizer Quality Score Scrutinizer Code Intelligence

Latest Release MIT License Total Downloads

Michael Holm 开发

<?php

use PageSEO\PageSEO;

require_once(__DIR__.'/vendor/autoload.php');

$seo = new PageSEO;

$title = $seo->title(
    'product',
    [
        'name' => 'Canon Z1000',
        'brand' => 'Canon',
    ],
    'en'
);

var_dump($title);