这是一个 PHP 问题
我有一个功能
函数 myfn () {
where i get some data here and add result to an array $matches = array(); preg_match_all('????????????', $searched, $matches); print_r($matches[1]); }
如果数组不包含任何元素,我需要暂停或退出此函数,并向 xyz@mail.com 发送电子邮件
感谢你的帮助
谢谢
如果你想退出功能就做return;
。但我只是添加一些以if()
. 并检查$matches
数组是否为空count()
。所以它可能看起来像这样:
function myfn () {
// where i get some data here and add result to an array
$matches = array();
preg_match_all('????????????', $searched, $matches);
if( count($matches) > 0 ) {
// there's something
print_r($matches[1]);
} else {
// empty
// send an email to xyz@mail.com
}
}