こんにちは、連絡先用のカスタム フィールドをいくつか作成しました。そのカスタム フィールドに値を挿入するにはどうすればよいですか。カスタム値をパラメータで渡そうとしました。しかし、挿入していません。その値を挿入する方法。親切に私を助けてください。
質問する
804 次
1 に答える
0
// 連絡先と最初のプライマリ ロケーションの入力パラメータを定義します
$params = array(
'first_name' => 'Dan',
'custom_{put your custom filed id here}' => "custom field value1",
'custom_{put your custom filed id here}' => "custom field value2"
);
$contact =&civicrm_contact_create( $params );
print_r($contact);
このようにして、カスタムフィールドに値を挿入できます
于 2011-02-24T10:17:13.657 に答える