coduo/php-to-string
Convert any PHP value to a readable string with a tiny wrapper. Supports strings, ints, floats, arrays, objects, callables, and resources—handy for logging, debugging, and error messages. Simple install and use: new StringConverter($value).
Simple library that converts PHP values into strings.
Status:
Simple library that allows you to cast any php value into string
composer require coduo/php-to-string
Supported types:
use Coduo\ToString\StringConverter;
$string = new StringConverter('foo');
echo $string; // "foo"
$double = new StringConverter(1.12312);
echo $double; // "1.12312"
$integer = new StringConverter(1);
echo $integer; // "1"
$datetime = new StringConverter(new \DateTime());
echo $datetime; // "\DateTime"
$array = new StringConverter(['foo', 'bar', 'baz']);
echo $array; // "Array(3)"
$res = fopen(sys_get_temp_dir() . "/foo", "w");
$resource = new StringConverter($res);
echo $resource; // "Resource(stream)"
How can I help you explore Laravel packages today?