Skip to content

A simple tool to provide an easy-to-use API to convert memory limit configuration from php.ini to bytes.

License

Notifications You must be signed in to change notification settings

BrandEmbassy/php-memory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Memory Limit

A simple tool to provide an easy-to-use API to convert memory limit configuration from php.ini to bytes.

Why

Core directive memory_limit in php.ini is a simple string. An administrator or a programmer can set several valid values, e.g.:

  • 500 = 500 bytes
  • 128M = 134 217 728 bytes
  • 1G = 1 073 741 824 bytes

You can obtain the original string value through ini_get('memory_limit') function. However, there is no built-in PHP function to provide an easy access to the byte value.

Installation

Add the package to your composer.json:

composer require brandembassy/php-memory

Usage

Create the MemoryLimitProvider service (or better, inject it using your DI container):

$configuration = new \BrandEmbassy\Memory\MemoryConfiguration();
$limitProvider = new \BrandEmbassy\Memory\MemoryLimitProvider($configuration);

There is also a DI extension for Nette Framework (you must have the nette/di package installed). Just register it in your services.neon file:

extensions:
    - BrandEmbassy\Memory\Bridge\MemoryLimitNetteExtension

You can then access the byte value of PHP memory limit like this:

$limitInBytes = $memoryLimitProvider->getLimitInBytes();

Any questions or ideas to improve? Feel free to open an issue or send a PR!

About

A simple tool to provide an easy-to-use API to convert memory limit configuration from php.ini to bytes.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages