2017 © Pedro Peláez
 

library php-humanizer

Repository was forked from coduo/php-humanizer because of lack of support

image

terranet/php-humanizer

Repository was forked from coduo/php-humanizer because of lack of support

  • Tuesday, April 3, 2018
  • by endihunter
  • Repository
  • 1 Watchers
  • 3 Stars
  • 2,408 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 115 Forks
  • 0 Open issues
  • 15 Versions
  • 17 % Grown

The README.md

PHP Humanizer

Build Status Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

Humanize values to make them readable for regular people ;), (*2)

Installation

Run the following command:, (*3)

composer require coduo/php-humanizer

Usage

Text

Humanize, (*4)

use Coduo\PHPHumanizer\StringHumanizer;

echo StringHumanizer::humanize('field_name'); // "Field Name"
echo StringHumanizer::humanize('user_id'); // "User"
echo StringHumanizer::humanize('field_name', false); // "field name"

Truncate, (*5)

Truncate string to word closest to a certain length, (*6)

use Coduo\PHPHumanizer\StringHumanizer;

$text = 'Lorem ipsum dolorem si amet, lorem ipsum. Dolorem sic et nunc.';

echo StringHumanizer::truncate($text, 8); // "Lorem ipsum"
echo StringHumanizer::truncate($text, 8, '...'); // "Lorem ipsum..."
echo StringHumanizer::truncate($text, 2); // "Lorem"
echo StringHumanizer::truncate($text, strlen($text)); // "Lorem ipsum dolorem si amet, lorem ipsum. Dolorem sic et nunc."

Truncate HTML, (*7)

Truncate and HTML string to word closest to a certain length, (*8)

use Coduo\PHPHumanizer\StringHumanizer;

$text = '

HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages.[1] Web browsers can read HTML files and render them into visible or audible web pages. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming language., (*9)

'; echo StringHumanizer::truncateHtml($text, 3); // "<b>HyperText</b>" echo StringHumanizer::truncateHtml($text, 12, ''); // "HyperText Markup" echo StringHumanizer::truncateHtml($text, 50, '', '...'); // "HyperText Markup Language, commonly referred to as..." echo StringHumanizer::truncateHtml($text, 75, '<b><i><u><em><strong><a><span>', '...'); // '<b>HyperText Markup Language</b>, commonly referred to as <b>HTML</b>, is the standard <a href="/wiki/Markup_language" title="Markup language">markup...</a>'

Number

Ordinalize, (*10)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::ordinalize(0); // "0th"
echo NumberHumanizer::ordinalize(1); // "1st"
echo NumberHumanizer::ordinalize(2); // "2nd"
echo NumberHumanizer::ordinalize(23); // "23rd"
echo NumberHumanizer::ordinalize(1002, 'nl'); // "1002e"
echo NumberHumanizer::ordinalize(-111); // "-111th"

Ordinal, (*11)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::ordinal(0); // "th"
echo NumberHumanizer::ordinal(1); // "st"
echo NumberHumanizer::ordinal(2); // "nd"
echo NumberHumanizer::ordinal(23); // "rd"
echo NumberHumanizer::ordinal(1002); // "nd"
echo NumberHumanizer::ordinal(-111, 'nl'); // "e"

Roman numbers, (*12)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::toRoman(1); // "I"
echo NumberHumanizer::toRoman(5); // "V"
echo NumberHumanizer::toRoman(1300); // "MCCC"

echo NumberHumanizer::fromRoman("MMMCMXCIX"); // 3999
echo NumberHumanizer::fromRoman("V"); // 5
echo NumberHumanizer::fromRoman("CXXV"); // 125

Binary Suffix, (*13)

Convert a number of bytes in to the highest applicable data unit, (*14)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::binarySuffix(0); // "0 bytes"
echo NumberHumanizer::binarySuffix(1); // "1 bytes"
echo NumberHumanizer::binarySuffix(1024); // "1 kB"
echo NumberHumanizer::binarySuffix(1025); // "1 kB"
echo NumberHumanizer::binarySuffix(1536); // "1.5 kB"
echo NumberHumanizer::binarySuffix(1048576 * 5); // "5 MB"
echo NumberHumanizer::binarySuffix(1073741824 * 2); // "2 GB"
echo NumberHumanizer::binarySuffix(1099511627776 * 3); // "3 TB"
echo NumberHumanizer::binarySuffix(1325899906842624); // "1.18 PB"

Number can be also formatted for specific locale, (*15)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::binarySuffix(1536, 'pl'); // "1,5 kB"

Number can also be humanized with a specific number of decimal places with preciseBinarySuffix($number, $precision, $locale = 'en') The precision parameter must be between 0 and 3., (*16)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::preciseBinarySuffix(1024, 2); // "1.00 kB"
echo NumberHumanizer::preciseBinarySuffix(1325899906842624, 3); // "1.178 PB"

This function also supports locale, (*17)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::preciseBinarySuffix(1325899906842624, 3, 'pl'); // "1,178 PB"

Metric Suffix, (*18)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::metricSuffix(-1); // "-1"
echo NumberHumanizer::metricSuffix(0); // "0"
echo NumberHumanizer::metricSuffix(1); // "1"
echo NumberHumanizer::metricSuffix(101); // "101"
echo NumberHumanizer::metricSuffix(1000); // "1k"
echo NumberHumanizer::metricSuffix(1240); // "1.2k"
echo NumberHumanizer::metricSuffix(1240000); // "1.24M"
echo NumberHumanizer::metricSuffix(3500000); // "3.5M"

Number can be also formatted for specific locale, (*19)

use Coduo\PHPHumanizer\NumberHumanizer;

echo NumberHumanizer::metricSuffix(1240000, 'pl'); // "1,24M"

Collections

Oxford, (*20)

use Coduo\PHPHumanizer\CollectionHumanizer;

echo CollectionHumanizer::oxford(['Michal', 'Norbert', 'Lukasz', 'Pawel'], 2); // "Michal, Norbert, and 2 others"
echo CollectionHumanizer::oxford(['Michal', 'Norbert', 'Lukasz'], 2); // "Michal, Norbert, and 1 other"
echo CollectionHumanizer::oxford(['Michal', 'Norbert']); // "Michal and Norbert"

Oxford is using translator component, so you can use whatever string format you like., (*21)

Date time

Difference, (*22)

use Coduo\PHPHumanizer\DateTimeHumanizer;

echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 13:00:00")); // just now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 13:00:05")); // 5 seconds from now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 12:59:00")); // 1 minute ago
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 12:45:00")); // 15 minutes ago
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 13:15:00")); // 15 minutes from now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 14:00:00")); // 1 hour from now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 15:00:00")); // 2 hours from now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-26 12:00:00")); // 1 hour ago
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26"), new \DateTime("2014-04-25")); // 1 day ago
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26"), new \DateTime("2014-04-24")); // 2 days ago
echo DateTimeHumanizer::difference(new \DateTime("2014-04-26"), new \DateTime("2014-04-28")); // 2 days from now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-01"), new \DateTime("2014-04-15")); // 2 weeks from now
echo DateTimeHumanizer::difference(new \DateTime("2014-04-15"), new \DateTime("2014-04-07")); // 1 week ago
echo DateTimeHumanizer::difference(new \DateTime("2014-01-01"), new \DateTime("2014-04-01")); // 3 months from now
echo DateTimeHumanizer::difference(new \DateTime("2014-05-01"), new \DateTime("2014-04-01")); // 1 month ago
echo DateTimeHumanizer::difference(new \DateTime("2015-05-01"), new \DateTime("2014-04-01")); // 1 year ago
echo DateTimeHumanizer::difference(new \DateTime("2014-05-01"), new \DateTime("2016-04-01")); // 2 years from now

Precise difference, (*23)

use Coduo\PHPHumanizer\DateTimeHumanizer;

echo DateTimeHumanizer::preciseDifference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2014-04-25 11:20:00")); // 1 day, 1 hour, 40 minutes ago
echo DateTimeHumanizer::preciseDifference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2015-04-28 17:00:00")); // 1 year, 2 days, 4 hours from now
echo DateTimeHumanizer::preciseDifference(new \DateTime("2014-04-26 13:00:00"), new \DateTime("2016-04-27 13:00:00")); // 2 years, 1 day from now

Currently we support following languages: * English * Polish * German * Turkish * French * Português - Brasil * Italian * Dutch * Русский * Norwegian * [Afrikaans] (src/Coduo/PHPHumanizer/Resources/translations/difference.af.yml) * [Bulgarian] (src/Coduo/PHPHumanizer/Resources/translations/difference.bg.yml) * [Indonesian] (src/Coduo/PHPHumanizer/Resources/translations/difference.id.yml) * [Chinese Simplified] (src/Coduo/PHPHumanizer/Resources/translations/difference.zh_CN.yml) * [Spanish] (src/Coduo/PHPHumanizer/Resources/translations/difference.es.yml) * [Ukrainian] (src/Coduo/PHPHumanizer/Resources/translations/difference.uk.yml) * [Danish] (src/Coduo/PHPHumanizer/Resources/translations/difference.da.yml) * [Thai] (src/Coduo/PHPHumanizer/Resources/translations/difference.th.yml), (*24)

Credits

This lib was inspired by Java Humanize Lib && Rails Active Support, (*25)

The Versions

03/04 2018

dev-master

9999999-dev

Repository was forked from coduo/php-humanizer because of lack of support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

03/04 2018

v2.1

2.1.0.0

Repository was forked from coduo/php-humanizer because of lack of support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

02/02 2016

2.0.2

2.0.2.0

Repository was forked from coduo/php-humanizer because of lack of support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

02/02 2016

2.0.1

2.0.1.0

Repository was forked from coduo/php-humanizer because of lack of support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

02/12 2015
06/11 2015

1.0.8

1.0.8.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

26/10 2015

1.0.7

1.0.7.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

26/10 2015

1.0.6

1.0.6.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

26/10 2015

1.0.4

1.0.4.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

26/10 2015

1.0.5

1.0.5.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

24/10 2015

1.0.3

1.0.3.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

24/10 2015

1.0.2

1.0.2.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

14/07 2015

1.0.1

1.0.1.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer

12/06 2014

1.0.0

1.0.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Norbert Orzechowicz

php humanize humanizer