PHPEveryday.com PHP and Web Development Tutorial
What are you looking for?


PHP Operators: Bitwise Operators


PHP Operators Step By Step Tutorial - Part 5: Bitwise operator is operator that is used for the bit operation (binary digit) in level (0 and 1).
Operator Info Example
In Decimal In Binner
& AND 9
8 &
8
1001
1000 &
1000
| OR 9
8 |
9
1001
1000 |
1000
^ XOR 9
8 ^
9
1001
1000 ^
1000
~ NOR ~9 (decimal) = -
11 (decimal)
<< shift leftly 9<<1
= 1
>> shift right 9>>1
= 4

In fact, bit operator inspiration of its ability at C Ianguage, but at php script is seldom to be used. Pay attention to the example of using bit operator at script as following:

File name: bitoperator.php

<html>
<head>
<title>Using Bit Operator</title>
</head>

<body>
<h1>The example for using bitwise operator</h1>
<?
printf("7 & 15 = %d <br>", 7 & 15);
printf("7 | 15 = %d <br>", 7 | 15);
printf("7 ^ 15 = %d <br>", 7 ^ 15);
printf("~7= %d <br>", ~7);
printf("7 << 1 = %d <br>", 7 << 1);
printf("7 >> 1 = %d <br>", 7 >> 1);
?>
</body>
</html>

The result of executing bitwise operator.php:

bit operator


Series this article:
PHP Operators: Introduction
PHP Operators: Arithmetic Operators
PHP Operators: Assignment Operators
PHP Operators: Assignment Operators Table
PHP Operators: Bitwise Operators
PHP Operators: Relation Operators
PHP Operators: Ternary Operator
PHP Operators: Error Control Operator
PHP Operators: Execution Operator
PHP Operators: Increment or Decrement Operator
php Operators: Logic Operator
PHP Operators: String Operator
PHP Operators: Array Operator
PHP Operators: Object Operator
PHP Operators: Operator Priority
PHP Constants: Introduction


Tag: operator, Bitwise Operators Category: PHP Basic Post : March 08th 2008 Read: 1,704 Bookmark and Share

blog comments powered by Disqus


Database Tutorial
  • Learn PHP MySQL
  • Learn PHP ADOdb
  • Learn PHP Data Object/PDO
  • Learn PHP XML
  • Learn PHP SimpleXML
Security Tutorial
  • Learn PHP Security
  • Learn HTTP Authentication
  • Learn PHPSecureSite
Framework Tutorial
  • Learn CodeIgniter
  • Learn Joomla
  • Learn Smarty
  • Learn Zend Framework
Template Tutorial
  • Learn Joomla Template
  • Learn WordPress Template
API Tutorial
  • Learn Facebook
JS Framework Tutorial
  • Learn MooTools
  • Learn JQuery
AJAX Tutorial
  • Learn AJAX in 10 Minutes
  • Learn AJAX Client Side
  • Learn AJAX PHP
  • Learn AJAX Remote Server
  • Learn AJAX Repetitive
  • Learn AJAX MySQL
  • Learn AJAX Grid
Web Services Tutorial
  • Learn Web Services NuSOAP
  • Learn Web Services WSDL
  • Learn Web Services WSDL Array
  • Learn Web Services .NET Grid
  • Learn Web Services WDDX
Package Post
  • Joomla Intro
  • Joomla Component
  • Joomla Module
  • Joomla MVC
  • Joomla MVC Backend
  • PostNuke Intro
  • Zend Framework Intro
  • Zend Framework Action
  • Zend Framework Database
  • Zend Framework Registry
  • Zend Framework Config
  • Zend Framework Login
  • Zend Framework Session
  • PHP Array Tips
  • PHP File Tips
  • PHP Email
  • PHP Ms Excel
  • PHP Pattern
  • PHP SMS
  • Flash Database
  • PHP Multitier
  • jQuery Introduction
  • jQuery Selectors
  • Portable Web Server
  • Web Mobile Intro
  • Drupal Installation
  • Drupal Configuration