| PHP |
|---|
| public static function CreateJSON($value): string |
| PHP |
|---|
// Creates JSON from the provided value.
private static function CreateJSON()
{
$value = (object) [
"Name" => "John",
"Number" => 5,
];
$result = LJC::CreateJSON($value);
// result:
// {"Name":"John","Number":5}";
}
|