php出現(xiàn)operator not supported for strings in..錯(cuò)誤的解決方法
作者: 鄭曉 分類: PHP 發(fā)布于: 2012-04-20 12:44 瀏覽:15,837 沒有評(píng)論
operator not supported for strings
PHP代碼出現(xiàn)這樣的錯(cuò)誤怎么辦:
Fatal error: [] operator not supported for strings in
在使用類似下面的方法進(jìn)行數(shù)據(jù)賦值時(shí)可能出現(xiàn)這樣的錯(cuò)誤:
$test_arr[] = $t;
而且是在當(dāng)前頁(yè)面對(duì)$test_arr進(jìn)行第二次賦值的時(shí)候,也就是在同一頁(yè)面內(nèi)對(duì)同一變量第二次賦值,但值的類型不一致會(huì)導(dǎo)致這個(gè)錯(cuò)誤,可以在第二次賦值前重新進(jìn)行一次聲明變量類型……簡(jiǎn)單的來說,就是同一頁(yè)面內(nèi),同一變量前后賦值的類型不一致所導(dǎo)致的。
本文采用知識(shí)共享署名-非商業(yè)性使用 3.0 中國(guó)大陸許可協(xié)議進(jìn)行許可,轉(zhuǎn)載時(shí)請(qǐng)注明出處及相應(yīng)鏈接。
本文永久鏈接: http://m.yjfs.org.cn/php-operator-not-supported-for-strings-in-error-solution.html