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
Requires
- phpcollection/phpcollection: ^0.5.0
Requires (Dev)
- phpunit/phpunit: ^5.4
This package is not auto-updated.
Last update: 2024-12-21 21:25:27 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'