12c05-1.php
来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 14 行
PHP
14 行
<?php// Just an included file with our product data. Normally you would read// this data in from a database. You would probably also store much more// data such as pictures and full product specifications. For this // example we are going much simpler:$products = array( 'x563942' => array('desc' => 'Xcast gaming console', 'price' => 674.99), 'x583954' => array('desc' => 'Xcast controller', 'price' => 24.99), 'g7' => array('desc' => 'Xcast game: Deaf Fury', 'price' => 45.98), 'g9' => array('desc' => 'Xcast game: C the Armadillo', 'price' => 19.95), 's23' => array('desc' => 'Store brand Logo T-Shirt', 'price' => 12.97), 'c997' => array('desc' => 'Gamerz Rool! Basecall Cap', 'price' => 5), );?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?