Answers for "how to convert text into string in php"

PHP
5

php to string

$number = 10;
// To convert this number to a string:
$numberString = (string)$number;
Posted by: Guest on October-30-2020
0

turn text file to string php

$fileContent = file_get_contents($url);
Posted by: Guest on March-20-2020

Code answers related to "how to convert text into string in php"

Browse Popular Code Answers by Language