Download the PHP package grithin/phpbase without Composer
On this page you can find all versions of the php package grithin/phpbase. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download grithin/phpbase
More information about grithin/phpbase
Files in grithin/phpbase
Package phpbase
Short Description PHP Base Tools.
License Apache-2.0
Homepage http://devtools.grithin.com
Informations about the package phpbase
PHP Base Tools
Provides php tools used by other grithin/php* projects.
Tools
Arrays
Files
The primary functions are file inclusion functions inc
, req
, incOnce
, reqOnce
. They allow inclusion tracking, context isolation, variable injection, variable extraction, and global injection.
Example file bob.php
Use
Bench
Simple benching utility
Memoized
The Memoized trait adds magic methods that interpret the method call, and if the call is prefixed with either memoize_
or memoized_
, Memoized will handle memoizing the method.
If a memoized function needs to be re-memoized, you can prefix it with memoize_
Memoized will make a key out of the function parameters, so if the function parameters are different, they will generate different memoize cache - and it does this independently of which parameters are used.
Memoized can be used with static methods
In some cases, it is desirable to know whether a method is currently being memoized. Let's say we have a user_get
function that returns data about a user, and within that function there is another location_get
function, that returns data about location linked to the user. Let's say there are two scenarios where we ant output from user_get:
- code that needs the most up-to-date
user_get
data - code that can expect
user_get
calls to be the same data during its run
Memoized provides a way to check whether the current function is within a memoize chain. For instance level memoizing $this->memoizing()
; for static memoizing, the Memoized::static_memoizing()
.
We could have a user_get
that looks like
Finally, a function can check if it was directly called to be memoized by using ->caller_requested_memoized()
and ::static_caller_requested_memoized()
.
Debug
Handling errors and print output
Set up for error handling
Output
Printing out any variable
Outputs:
If run within a web server, it will enclose with <pre>
Debug::quit();
will do ::out()
then exit
.
All versions of phpbase with dependencies
ext-json Version *
ext-mbstring Version *