PHP code example of coduo / php-to-string
1. Go to this page and download the library: Download coduo/php-to-string library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
coduo / php-to-string example snippets
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)"