承接 mpclarkson/stringy 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mpclarkson/stringy

最新稳定版本:v1.0.2

Composer 安装命令:

composer require mpclarkson/stringy

包简介

A PHP Library that provides a consistent api for object oriented manipulation of strings.

README 文档

README

Scrutinizer Code Quality Build Status

Overview

Are you stick to death of PHP's inconsistencies in terms on manipulating strings? Well, look no further!

Rather than constantly having to write obtuse code like this to check if a string contains a substring:

  strpos($mystring, $substring) !== false ? true : false;

You can now do this (and many other things), sensibly!

  $string = new String($myString);

  $bool = $string->contains($substring);

Yay! :)

Usage

After applying any methods, the underlying text/string can be accessed as follows:

$stringy = new Stringy("mystring");
$stringy->append("is fun", " ");

echo $stringy->string();
//"mystring is fun";

Methods

Method Parameters Returns
string nil string
truncate $chars = 50, $appendWith = "..." $this
length nil int
contains $substring bool
startsWith $substring bool
endsWith $substring bool
append $string $this
reverse nil $this
uppercase nil $this
uppercaseFirst nil $this
lowercase nil $this
lowercaseFirst nil $this
titleCase nil $this
sentenceCase nil $this
toArray $delimiter = null array
apply callback $this

Checkout the tests for examples of each method.

Requirements

  • PHP 5.4+

Composer

Use Composer by adding the following lines in your composer.json:

    "require": {
        "mpclarkson/stringy": "dev-master"
    },

Todos

  • More methods
  • Contributions welcome

Credits

This has been inspired by the beautify string manipulation in Apple's Swift language.

Thanks goes to Paper Planes Digital Marketing in Brisbane.

统计信息

  • 总下载量: 2.14k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: Apache-2.0
  • 更新时间: 2015-11-09