扭轉一個字符串,我收到了一條錯誤 未初始化字符串偏移量:用於循環使用PHP
這是我的代碼
$post = "Test";
$strtext = strlen($post);
for($i=strlen($post);$i>=0;$i--)
{
echo $post[$i];
}
我回顧我的代碼,我認爲都是正確的,但我不不認爲它是完美的,因爲它有一個錯誤。
結果必須是沒有錯誤的tseT。 ,我不允許使用error_reporting(0);
這是我們的任務tbh,只使用1 for循環反轉字符串。
謝謝你的回答。
$ I = strlen的($交)-1; – splash58
'echo strlen($ post)'輸出的值是多少? – Terminus
字符串長度爲 –