I am trying to insert comment in WordPress using PHP, But it's not print ID when executing it. When I remove the symbol from comments it will work correctly. Need solution
$content = 'hello ';
$agent = $_SERVER['HTTP_USER_AGENT'];
$data = array(
    'comment_post_ID' => 1,
    'comment_author' => 'admin',
    'comment_author_email' => "admin@gmail.com",
    'comment_content' => $content,
    'comment_agent' => $agent,
    'comment_date' => '2022-02-02 10:10:10',
    'comment_approved' => 1,
);
$comment_id = wp_insert_comment($data);
echo $comment_id;
