What is the correct syntax for setting a cookie to null or deleting it in PHP?

When you want to delete a cookie in PHP, you can do so by setting it to null and expiring it. This will remove the cookie from the client's browser.

// Set the cookie value to null and expire it
setcookie('cookie_name', null, time() - 3600, '/');