如果它是不同的电信公司,我试图通过对其进行排序来实现,但它不起作用。先感谢您。无论如何,这是我的代码。
如果您有任何疑问,请询问我,我可以分享更多详细信息。
控制器:
$contact->telecom = getPhoneType();
模型:
public function getPhoneType() {
$s = substr($this->mobile, 0, 5);
if ($s == "63905") {
return "Globe";
}
if ($s == "63907") {
return "Smart";
}
if ($s == "63922") {
return "Sun Cellular";
}
}
元芳怎么了