Took me a few hours to figure this out…
$response = $connection->post('statuses/destroy/'.$tweetID, array());
->Curl url output = statuses/destroy/$tweetID.json
This will NOT work:
$response = $connection->post('statuses/destroy/', array('id' => $tweetID));
-> Curl url output = statuses/destroy/.json