jasekiw/javaphp

There is no license information available for the latest version (dev-master) of this package.

dev-master 2020-02-19 16:10 UTC

This package is not auto-updated.

Last update: 2024-05-11 18:13:18 UTC


README

overview

This library is a java like library that encapsulates all of php's global functions for base types.

JString is the first class built. many will be added

JString

JString is a class that encapsulates all string funcitons into an object

ex.

$test = JString::valueOf(" hello ");
$fixed = $test->trim();
$result = $fixed->toUpperCase();
echo $result; // 'HELLO'