第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

總是出現(xiàn)非數(shù)值

總是出現(xiàn)非數(shù)值

PHP
catspeake 2023-05-26 09:27:38
我正在嘗試將此 Javascript 代碼翻譯成 PHP,但是當我這樣做時,它會給我一條非數(shù)字值的消息。每次我 var dump 時count($fin),它都會給我一個與console.logJavaScript 中不同的索引。JavaScript 中的代碼:var countAndSay = function(n) {    var str = '1';    for (var i=1; i < n; i++) {             var strArray = str.split('');        str ='';        var count = 1;        // Loop through current nth level line        for (var j=0; j < strArray.length; j++) {            // Next digit is different            if (strArray[j] !== strArray[j+1]) {                // Go to next non-matching digit                str += count + strArray[j];                count = 1;            } else {                count++;            }        }    }    return str;};console.log(countAndSay(45));這是我的 PHP 代碼:function countAndSay($n) {     $str = "1";      for ($i = 1; $i < $n; $i++) {         $fin = str_split($str);        $str = "";        $len = count($fin);         $cnt = 1;        for ($j = 0; $j < $len; $j++) {             if ($fin[$j] !== $fin[$j +1]) { //error for non numeric value                $str += $cnt + $fin[$j];                 $cnt = 1;             } else {                $cnt++;             }        }    }    return $str; }echo countAndSay(9); 
查看完整描述

1 回答

?
不負相思意

TA貢獻1777條經(jīng)驗 獲得超10個贊

在 JavaScript 中,該+運算符也是字符串連接運算符,而在 PHP 中+始終是算術(shù)加法。對于 PHP 中的串聯(lián),您應該使用.運算符。


其次,在 JavaScript 中,您可以在數(shù)組中使用超出范圍的索引(這會為您提供一個值undefined),而在 PHP 中,它會產(chǎn)生異常。這在您的代碼中發(fā)生 when $j+1is equal to $len,因此您應該添加一個條件來處理這種情況。


這是您需要更正的部分:


            // protect against out of range index:

            if ($j+1 >= $len or $fin[$j] !== $fin[$j +1])

            { 

                // Use string concatenation operator

                $str .= $cnt . $fin[$j]; 

                $cnt = 1; 

            } 


查看完整回答
反對 回復 2023-05-26
  • 1 回答
  • 0 關(guān)注
  • 167 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號