Download the PHP package jifish/ezdice without Composer

On this page you can find all versions of the php package jifish/ezdice. 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 ezdice

EZDice

A really simple PHP library for parsing dice notation and rolling. By Joseph Fowler aka JiFish.

Works in PHP 7+.

Why use EZDice?

EZDice was written because I wasn't happy with similar libraries. EZDice has the following advantages over other offerings:

Usage

Here's a basic example

Example Output:

Installing with Composer

You don't have to use composer to include EZDice in your project, but you can:

composer require jifish/ezdice

Methods

roll($diceStr)

Parse $diceStr as dice notation, then roll those dice. Returns (int) total of all rolls and modifiers, or false if none were found.

The parser is very forgiving, ignoring whitespace and anything else it doesn't recognize. It is also case-insensitive. Dice notation is briefly documented below.

getTotal()

Returns (int) that is the total of the last roll.

getDiceStates()

Returns an (array) of dice that describes the state of the dice after the last roll. Each die is also an (array) with the following keys:

getModifier()

Returns a (string) representing the total of all modifiers in the last roll. If there were no modifiers, or they cancelled out, an empty string is returned. You can cast this to an (int) if needed.

e.g. if you rolled 1d8+10+1d4-2 this method would return +8.

getDiceGroupNumber()

Returns an (int) containing the total number of dice groups in the last roll. e.g. if you rolled 10d4-1d6, this method would return 2.

getDiceModsNumber()

Returns an (int) containing the total number of modifiers in the last roll. e.g. if you rolled 10+1d6+5-1, this method would return 3.

strContainsDice($diceStr)

Parse $diceStr and returns true if it contains at least one dice roll, otherwise returns false. Useful for verifying user input. Modifiers without dice don't count.

strIsStrictlyDice($diceStr, $allowWhitespace = true, $mustContainDice = true)

Parse $diceStr and determine if it only contains dice and modifiers. Whitespace is allowed unless $allowWhitespace is set to false, but strings containing only whitespace will never pass. Set $mustContainDice to false to allow plain modifiers without dice (e.g. -4) to pass. Returns true if $diceStr passes, otherwise false.

The roll function ignores stuff it can't parse, so this function may be useful if you need to verify a string doesn't contain additional junk.

rollStrict($diceStr, $allowWhitespace = true, $mustContainDice = true)

Convenience function that returns false if $diceStr is not strictly dice (as above), but otherwise works the same as roll().

Dice Notation

Replacing the random number generator

By default mt_rand() is used as the RNG, which should be fine for most applications. If you want to change this, you can extend the class and override the method getRandomNumber($max), which should return an int equal to or between 1 to $max.

Legalese

Released under the MIT license. Copyright (c) 2021 - 2025 Joseph Fowler.


All versions of ezdice with dependencies

PHP Build Version
Package Version
Requires php Version >=7.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 jifish/ezdice contains the following files

Loading the files please wait ....