2017 © Pedro Peláez
 

library brevity

A small utility to count characters and shorten posts to tweet-length.

image

kylewm/brevity

A small utility to count characters and shorten posts to tweet-length.

  • Saturday, November 25, 2017
  • by kylewm
  • Repository
  • 2 Watchers
  • 7 Stars
  • 10,702 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 8 Versions
  • 25 % Grown

The README.md

brevity-php

Build Status, (*1)

A small utility to count characters, autolink, and shorten posts to an acceptable tweet-length summary., (*2)

This is a port of the Python module of the same name. Please refer to https://github.com/kylewm/brevity for documentation., (*3)

Note that this module depends on the mb_ string methods to be available. I get the best results by setting, (*4)

mb_internal_encoding('UTF-8');

somewhere in my project., (*5)

Installation

If you're using Composer, you can simply composer require kylewm/brevity., (*6)

Otherwise, TODO, (*7)

Usage

tweetLength($text)

Find out how many characters a message will use on Twitter with tweetLength():, (*8)

$brevity = new \Kylewm\Brevity\Brevity();
$length = $brevity->tweetLength('Published my first npm www.npmjs.com/package/brevity and composer packagist.org/packages/kylewm/brevity packages today!');
echo $length;  // 99

This text is 119 characters but, due to t.co wrapping, will only use 99 characters., (*9)

autolink($text)

Convert URLs in plaintext to HTML links., (*10)

$brevity = new \Kylewm\Brevity\Brevity();
$html = $brevity->autolink("I'm a big fan of https://en.wikipedia.org/wiki/Firefly_(TV_series) (and its creator https://en.wikipedia.org/wiki/Joss_Whedon)");
echo $html;

Note that brevity handles parentheses and other punctuation as you'd expect., (*11)

shorten($text)

The shorten($text) function takes a message of any length and shortens it to a Tweet-length of 280 characters, adding an ellipsis at the end of it is truncated. It will not truncate a word or URL in the middle. Shorten takes a few optional parameters that change the way the tweet is formed. Any of these parameters can be false., (*12)

  • $permalink - included after the ellipsis if and only if the text is shortened. Must be a URL or false.
  • $shortpermalink - included in parentheses at the end of tweets that are not shortened. Must be a URL or false.
  • $shortpermacitation - included in parentheses at the end of tweets that are not shortened. Must not be a URL, e.g. ttk.me t4fT2
  • $formatAsTitle - take the text as a title of a longer article. Always formats as "Title: $permalink" or "Title… $permalink" if shortened.
$brevity = new \Kylewm\Brevity\Brevity();
$permalink = "https://kylewm.com/2016/01/brevity-shortens-notes";
$longnote = "Brevity (github.com/kylewm/brevity-php) shortens notes that are too long to fit in a single tweet. It can also count characters to help you make sure your note won't need to be shortened!";
$tweet = $brevity->shorten($longnote, $permalink);
echo $tweet;

Changes

  • 0.2.10 - 2017-11-25: Account for 280 character limit and multi-byte character weights. Also backports some fixes from the python library.
  • 0.2.8 - 2016-04-19: Support article+media format
  • 0.2.5 - 2016-01-29: Changed namespace from Kylewm to Kylewm\Brevity for better PSR-0 compatibility.

The Versions

25/11 2017

dev-master

9999999-dev

A small utility to count characters and shorten posts to tweet-length.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

25/11 2017

0.2.10

0.2.10.0

A small utility to count characters and shorten posts to tweet-length.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

25/11 2017

280.x-dev

280.9999999.9999999.9999999-dev

A small utility to count characters and shorten posts to tweet-length.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

26/05 2016

0.2.9

0.2.9.0

A small utility to count characters and shorten posts to tweet-length.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

19/04 2016

0.2.8

0.2.8.0

A small utility to count characters and shorten posts to tweet-length.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

02/02 2016

0.2.6

0.2.6.0

A small utility to count characters and shorten posts to tweet-length.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

29/01 2016

0.2.5

0.2.5.0

A small utility to shorten posts to an acceptable tweet-length summary.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan

29/01 2016

0.2.4

0.2.4.0

A small utility to shorten posts to an acceptable tweet-length summary.

  Sources   Download

CC0

The Development Requires

by Kyle Mahan