PHP 不用函数翻转字符串


$str = 'hello';

$newstr = '';

$i = 0;

while (!empty($str[$i])) {
	$newstr = $str[$i].$newstr;

	$i++;
}

echo $newstr;