📜  如何在 php 变量中获取输入值 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:35.547000             🧑  作者: Mango

代码示例1
$info = array('Doina', 'brown', 'long');

// Listing all the variables
list($she, $color, $hear) = $info;
echo "$she has $color eyes color and $hear black hair.\n";