PHP two-dimensional array, how to solve it

PHP two-dimensional array

$str = array (
“Network programming books”=>array(‘a’,’d’,’er’),
“Historical Books”=>array(‘boko’,’fd’,’popo’),
“Literature Books”=>array(‘fd’,’fd’,’fd’),
);

echo $str[0][2];

why not show

——Solution ———————
Of course not displayed! There is no subscript 0, how to display it?
——Solution ——————–
Because you originally The position of 0 is replaced by ‘Network Programming Books’
echo $str[‘Network Programming Books’][2]
——Solution —————– —
Your two-dimensional array, the outermost subscript of the associative array is a character, not a number
——Solution- ——————-
You can change the code to
$str = array (
array(‘a’,’d’,’er’),//Network programming books
array(‘boko’,’fd’,’popo’),//historical books
array(‘fd’,’fd’,’fd’),//literary books
);

echo $str[0][2];
This will show

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/php-two-dimensional-array-how-to-solve-it/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索