Stars: 260
Forks: 6
Pull Requests: 14
Issues: 2
Watchers: 5
Last Updated: 2023-03-28 10:13:29
Cast any php value into a string
License: MIT License
Languages: PHP
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)"