jasekiw/javaphp

该包最新版本(dev-master)没有提供许可证信息。

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

This package is not auto-updated.

Last update: 2024-09-14 20:14:48 UTC


README

概览

这个库是一个类似Java的库,封装了PHP的基础类型的所有全局函数。

JString是第一个构建的类。将会添加更多。

JString

JString是一个封装了所有字符串函数到对象的类

例。

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