我需要从以下内容中获取前两个字符:
$node->field_email_body['und'][0]['value']; //there are like 200 - 300 characters
我试着去:
$bodyemail = substr($node->field_email_body['und'][0]['value'], 0, 2);
它不起作用。
然后我需要做这样的事情:
if ($bodyemail == 'ok') {
drupal_set_message ('done');
}
else {
drupal_set_message ('not done');
}
我知道它是一个数组......并且substr
适用于字符串。但我真的不知道如何以另一种方式做到这一点。谷歌没有帮助。