coduo/php-to-string

Simple library that converts PHP value into strings

3.2.1 2023-03-28 10:10 UTC

This package is auto-updated.

Last update: 2024-04-28 12:59:49 UTC


README

Simple library that converts PHP values into strings.

Status:

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Simple library that allows you to cast any php value into string

Installation

composer require coduo/php-to-string

Usage

Supported types:

  • string
  • integer
  • float/double
  • object
  • callable
  • array
  • resource
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)"