Please answer this simple SPAM challenge: one minus one? (Example: nine)
Using (cmask - umask) is a wrong way to calculate the new mask:0022 - 0700 = 0656 WRONG0700 & ~0022 = 0700 CORRECTCorrect php code:<?php$rmask = ($cmask & ~$umask);?>
<< Back to user notes page