jasekiw / javaphp
Installs: 561
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
pkg:composer/jasekiw/javaphp
Requires
- phpcollection/phpcollection: ^0.5.0
Requires (Dev)
- phpunit/phpunit: ^5.4
This package is not auto-updated.
Last update: 2025-10-12 01:08:08 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'