用php执行.cfm脚本

I'm using the following code to remotely execute a script:

$url = 'https://x.x.com/update_something.cfm?something_id=' . $id;
            $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
            $response = curl_exec($ch);
            curl_close($ch);

The script, however, it's not being executed (when I visit the url above from the browser, I can see the updated results, when doing it from the php script above nothing happens. PHP is not giving me any errors though, it just finishes the execution. What am I missing?

Adding curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); made it work! :)