在PHP中执行字符串转换和strval之间有什么区别?
> strval($value);
>(string)$value;
http://www.php.net/manual/en/language.types.string.php#language.types.string.casting
原文链接:https://www.f2er.com/php/131081.htmlA value can be converted to a string using the (string) cast or the strval() function.
看起来和我一样.