<?php
// 定义客户数组
$customers = array();
// 添加客户信息
function addCustomer($customers, $name, $email, $phone){
$customer = array(
'name' => $name,
'email' => $email,
'phone' => $phone
);
$customers[] = $customer;
return $customers;
}
// 显示客户信息
function showCustomers($customers){
foreach($customers as $key => $customer){
echo "Customer " . ($key + 1) . ": <br>";
echo "Name: " . $customer['name'] . "<br>";
echo "Email: " . $customer['email'] . "<br>";
echo "Phone: " . $customer['phone'] . "<br><br>";
}
}
// 添加客户
$customers = addCustomer($customers, 'John Doe', 'john.doe@example.com', '1234567890');
$customers = addCustomer($customers, 'Jane Smith', 'jane.smith@example.com', '0987654321');
// 显示客户信息
showCustomers($customers);
?>
这段代码实现了一个简单的客户关系管理(CRM)功能,通过使用array()
来存储客户信息,可以添加客户信息并显示客户信息。在这个例子中,我们定义了一个$customers
数组来存储客户信息,然后使用addCustomer()
函数来添加客户信息,最后使用showCustomers()
函数来显示客户信息。您可以根据实际需求扩展这个功能,比如添加更多客户信息字段或实现其他操作。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。