show/hide this revision's text 6 added new example

You can take advantage of the fact that the or operator has lower precedence than = to do this:

$page = (int) @$_GET['page'] 
  or $page = 1;

If the value of the first assignment evaluates to true, the second assignment is ignored. Another example:

$record = get_record($id) 
  or throw new Exception("...");
show/hide this revision's text 5 deleted 35 characters in body

You can take advantage of the fact that the or operator has lower precedence than = to do this:

$page = (int) @$_GET['page'] 
  or $page = 1;

If the value of the first assignment evaluates to true, the second assignment is ignored.This can be also useful for validating user input:

preg_match(REGEXP_EMAIL, $_POST['email'])
  or $errors['email'] = "Please provide a valid e-mail address."

show/hide this revision's text 4 added 11 characters in body

You can take advantage of the fact that the or operator has lower precedence than = to do this:

$page = (int) @$_GET['page'] 
  or $page = 1;

If the value of the first assignment evaluates to true, the second assignment is ignored. This can be also useful for validating user input:

valid::email($email) 
  

preg_match(REGEXP_EMAIL, $_POST['email'])
  or $errors['email'] = "Please provide a valid e-mail address."
show/hide this revision's text 3 added more examples
show/hide this revision's text 2 fixed grammar
show/hide this revision's text 1