Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Tilde ~

The tilde ~ is an operator and a wildcard.

  • ~ is the binary not operator
  • ~ is used in composer configuration to define a minimum version.
<?php

    $a = 3;     // 3 
    $b = ~$a;   // -4

?>

Documentation