Download the PHP package waqarahmed/read-time without Composer

On this page you can find all versions of the php package waqarahmed/read-time. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package read-time

Read Time

Calculates the read time of an article.

Output string

e.g: x min read or 5 minutes read.

Features

Installation

Installation using composer

Usage

Static Methods

There are two static methods minRead(string $text) andtime(sting $text).

minRead()

Use this method for a simple x min read message. It returns a rounded minutes number with a min read message.

The output:

2 min read

time()

time() method returns an array of the number of minutes and seconds required to read the given $text.

The output:

Class Methods

Create an instance of the class to use

constructor()

The Constructor takes and sets these parameters:

Class defaults

getTime()

After initiating a new class object, call the getTime() method to get the result. Example: 4 minutes read or 1 minute read or abbreviated 4 min read.

setTextLanguge()

Reading time of different languages vary significantly (S. Klosinski, K. Dietz). Class method setTextLanguage() has estimated reading times of 17 languages taken from this study.

Reference: "Standardized Assessment of Reading Performance: The New International Reading Speed Texts IReST"

Language (iso-code) Words-per-minutes

Arabic (ar) 138, Chinese (zh) 158, Dutch (nl) 202, English (en) 228, Finnish (fi) 161, French (fr) 195, German (el) 179, Hebrew (he) 187, Italian (it) 188, Japanese (jp) 193, Polish (pl) 166, Portoguese (pt) 181, Russian (ru) 184, Slovenian (sl) 180, Spanish (es) 218, Swedish (sv) 199, Turkish (tr) 166.

English is the default language. Set different languages by passing two letters (ISO 639-1) language codes to the setTextLanguag() method.

An example: Setting Turkish as the input language.

Translation

Pass translation array to the class to set the translations of the words: minute, minutes, min and read. A passed array must be an associative array with any number of translation strings.

Default property of $translation

Example translation input

The Spanish translated output: 2 minutos leer.

Right-to-Left Language Translation

Set $rtl property to true and pass $translation of languages written right-to-left.

Persian translated output: 'خواندن دقایق 2'

getJSON()

Method to get JSON output of claculated read time and class properties.

A class instance with default properties outputs:

outputs:

getArray()

Method to get array output of calculated read time and instance properties. A class instance with default properties:

Outputs:


All versions of read-time with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package waqarahmed/read-time contains the following files

Loading the files please wait ....