久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

基于php雙引號中訪問數(shù)組元素報錯的解決方法

下面小編就為大家分享一篇基于php雙引號中訪問數(shù)組元素報錯的解決方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧

最近在做微信公眾號開發(fā),在一個發(fā)送圖文接口中,需要把數(shù)組元素拼接在XML字符串中

foreach ($itemArr as $key => $value){ 
  $items .= "<item> 
  <Title><![CDATA[$value['title']]]></Title>  
  <Description><![CDATA[[$value['description']]]></Description> 
  <PicUrl><![CDATA[$value['picUrl']]]></PicUrl> 
  <Url><![CDATA[$value['url']]]></Url> 
  </item>"; 
} 

結(jié)果竟報如下錯誤信息:

Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in D:\hhp\wamp\www\weixin\wx_sample.php on line 146

從錯誤信息看是單引號的問題,果斷去掉之后就沒報錯了。然而我就納悶了,引用下標為字符串的數(shù)組元素難道不該加引號嗎?到php官方手冊去查了關(guān)于數(shù)組的描述,有一段是這樣的:

$arr = array('fruit' => 'apple', 'veggie' => 'carrot'); 
// This will not work, and will result in a parse error, such as: 
// Parse error: parse error, expecting T_STRING' or T_VARIABLE' or T_NUM_STRING' 
// This of course applies to using superglobals in strings as well 
print "Hello $arr['fruit']"; 
print "Hello $_GET['foo']"; 

這里給出了兩種錯誤的寫法,當一個普通數(shù)組變量或超全局數(shù)組變量包含在雙引號中時,引用索引為字符串的數(shù)組元素,索引字符串不應(yīng)該再添加單引號。那正確的寫法是怎樣的呢?于是我繼續(xù)查找官方手冊,找到如下說法:

$arr = array('fruit' => 'apple', 'veggie' => 'carrot');

// This defines a constant to demonstrate what's going on. The value 'veggie'
// is assigned to a constant named fruit.
define('fruit', 'veggie');

// The following is okay, as it's inside a string. Constants are not looked for// within strings, so no E_NOTICE occurs hereprint "Hello $arr[fruit]";   // Hello apple// With one exception: braces surrounding arrays within strings allows constants// to be interpretedprint "Hello {$arr[fruit]}";  // Hello carrotprint "Hello {$arr['fruit']}"; // Hello apple

$arr = array('fruit' => 'apple', 'veggie' => 'carrot');

// This defines a constant to demonstrate what's going on. The value 'veggie'
// is assigned to a constant named fruit.
define('fruit', 'veggie');

// The following is okay, as it's inside a string. Constants are not looked for
// within strings, so no E_NOTICE occurs here
print "Hello $arr[fruit]";   // Hello apple

// With one exception: braces surrounding arrays within strings allows constants
// to be interpreted
print "Hello {$arr[fruit]}";  // Hello carrot
print "Hello {$arr['fruit']}"; // Hello apple

這里給出了三種正確的寫法:

第一種寫法索引字符串不添加任何引號,此時表示獲取索引為字符串fruit的數(shù)組元素,輸出apple。

第二種寫法索引字符串也沒有添加任何引號,同時將數(shù)組變量用一對花括號{ }給包了起來,此時fruit實際上表示一個常量,而不是一個字符串,因此表示獲取索引為fruit常量值的數(shù)組元素,常量fruit的值是veggie,所以輸出carrot。

第三種寫法是引用字符串不但添加了單引號,同時也將數(shù)組變量用一對花括號{ }給包了起來,此時表示獲取索引為字符串fruit的數(shù)組元素,輸出apple。

后來我繼續(xù)查找,發(fā)現(xiàn)這樣一段代碼:

// Incorrect. This works but also throws a PHP error of level E_NOTICE because 
// of an undefined constant named fruit 
//  
// Notice: Use of undefined constant fruit - assumed 'fruit' in... 
print $arr[fruit];  // apple 
<pre name="code" class="php">print $arr['fruit']; // apple 
// This defines a constant to demonstrate what's going on. The value 'veggie'// is assigned to a constant named fruit.define('fruit', 'veggie');// Notice the difference nowprint $arr[fruit]; // carrot

print $arr['fruit']; // apple 

在正常情況下,數(shù)組變量沒有被雙引號包圍時,是否給索引字符串加上單引號輸出結(jié)果都一致時apple,但是當定義一個與索引字符串fruit同名的常量時,未加單引號的索引字符串輸出結(jié)果就成了carrot,而加上單引號還是apple。

結(jié)論:

1. 數(shù)組變量未用雙引號包括時,

(1) 索引字符串加單引號表示字符串本身

<pre name="code" class="php">$arr['fruit'] 
【網(wǎng)站聲明】本站除付費源碼經(jīng)過測試外,其他素材未做測試,不保證完整性,網(wǎng)站上部分源碼僅限學習交流,請勿用于商業(yè)用途。如損害你的權(quán)益請聯(lián)系客服QQ:2655101040 給予處理,謝謝支持。

相關(guān)文檔推薦

這篇文章主要介紹了PHP有序表查找之插值查找算法,簡單分析了插值查找算法的概念、原理并結(jié)合實例形式分析了php實現(xiàn)針對有序表插值查找的相關(guān)操作技巧,需要的朋友可以參考下
下面小編就為大家分享一篇ThinkPHP整合datatables實現(xiàn)服務(wù)端分頁的示例代碼,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
下面小編就為大家分享一篇PHP實現(xiàn)APP微信支付的實例講解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
這篇文章主要介紹了PHP實現(xiàn)的多維數(shù)組排序算法,結(jié)合實例形式對比分析了php針對多維數(shù)組及帶有鍵名的多維數(shù)組進行排序相關(guān)操作技巧與注意事項,需要的朋友可以參考下
這篇文章主要為大家詳細介紹了php結(jié)合ajaxuploadfile實現(xiàn)無刷新文件上傳功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本篇文章給大家詳細介紹了PHP開發(fā)接口使用RSA進行加密解密方法,對此有興趣的朋友可以學習下。
主站蜘蛛池模板: 进去里视频在线观看 | 欧美午夜精品一区二区三区 | av大全在线观看 | 日韩高清精品免费观看 | 中文在线一区 | 婷婷色综合| 成人在线免费视频观看 | 国产精品成人一区 | 色综合天天综合网国产成人网 | 亚洲精品乱码久久久久久 | 久久精品国产成人av | 999毛片| 两性免费视频 | 亚洲狠狠干 | 91视频亚洲 | 亚洲区一区二 | 欧美日韩第一页 | 日本黄色a级片 | 久久视频精品 | 黄色片视频 | 韩国精品一区二区 | 精品日韩一区二区 | 精品日韩一区二区三区 | 五月亚洲 | 国产视频导航 | 香蕉视频一区二区三区 | 亚洲激情偷拍 | 欧美日韩黄 | 男女无遮挡xx00动态图120秒 | 免费毛片视频 | 韩日视频 | 亚洲毛片网 | 黄网在线播放 | 国产一区二区三区在线观看视频 | 中文字幕一区二区在线播放 | 黄色一级片视频 | 91精品国产麻豆国产自产在线 | 中文字幕在线一区 | 黄色片网站在线观看 | 国产成人精品一区二 | 中文字幕一区二区三区乱码 |