rafaeldsb/php-string-tags

辅助字符串标签的助手。

v0.1.1 2020-02-09 05:04 UTC

This package is auto-updated.

Last update: 2024-09-10 00:56:27 UTC


README

Total Downloads Latest Stable Version Codacy grade Codacy coverage CircleCI

此包是字符串标签的助手

安装

composer require rafaeldsb/php-string-tags

基本用法

<?php

use RafaelDsb\Helpers\Tag;

$string = 'A string with a {{key}} and a {{tag}}';

$keys = Tag::getTags($string); // It returns ['key', 'tag']

$newString = Tag::replaceTags($string, ['key' => 'little key', 'tag' => 'door']);
echo $newString; // A string with a little key and a door

高级用法

您可以使用它与其他字符一起处理标签

<?php

use RafaelDsb\Helpers\Tag;

$string = 'A string with a <key> and a <tag>';

$keys = Tag::getTags($string, '<', '>'); // It returns ['key', 'tag']

$newString = Tag::replaceTags($string, ['key' => 'little key', 'tag' => 'door'], '<', '>');
echo $newString; // A string with a little key and a door