0
A
回答
0
我相信這只是編寫類似於maps/dictionaries的數組文字的語法。
$ mydict = array('hello'=>'world');
上面是一個元素的數組。但是,如果不是索引該元素與一個整數值,您可以使用鍵'hello'
:
回聲$ mydict [「你好」]值的
1
分配到指定的關鍵。
http://www.php.net/manual/en/language.operators.assignment.php
$example = array('color' => 'blue');
echo $example['color']; //prints blue
相關問題
- 1. 這是什麼意思在PHP() - >
- 2. 「 - >」是什麼意思在PHP?
- 3. >> =是什麼意思?
- 4. Groovy,什麼意思 - >意思是
- 5. PHP,$ this - > {$ var} - 這是什麼意思?
- 6. `^^^`和`〜>`是什麼意思?
- 7. 「 - >」是什麼意思?
- 8. <>是什麼意思?
- 9. <>是什麼意思?
- 10. 「=>」是什麼意思?
- 11. '=>'是什麼意思?
- 12. `()=> Unit`是什麼意思?
- 13. > var是什麼意思?
- 14. 「 - >」是什麼意思?
- 15. 「=>」是什麼意思?
- 16. <+>是什麼意思?
- 17. 「outer =>」是什麼意思?
- 18. {< >}是什麼意思?
- 19. $ this->是什麼意思?
- 20. >> = purescript中的意思是什麼?
- 21. > +和> - 是什麼意思在C#
- 22. 什麼是()=> {}是什麼意思?
- 23. - >在C++中是什麼意思?
- 24. 在java中=() - >是什麼意思?
- 25. 什麼意思?=在PHP中的意思?
- 26. 在php中,「$ this-> object - > ...」是什麼意思?
- 27. 什麼意思 - >在Ruby中的意思是
- 28. 是什麼意思:是什麼意思?
- 29. 什麼意思在PHP中?
- 30. PHP這是什麼意思?
你有沒有看到有關數組的手冊?另見[參考 - 這個符號在PHP中的含義是什麼?](http://stackoverflow.com/questions/3737139/reference-what-does-this-symbol-mean-in-php) – BoltClock 2011-02-02 07:39:07