phpeveryday.com

The best tutorial of php, php framework, php strategies, object oriented oriented,


PHP Operators: Execution Operator

Tag: operator, Execution Operator   Category: PHP Basic
post: 08 Mar 2008 read: 563


PHP Operators Step By Step Tutorial - Part 9: PHP support one execution operator: backticks(` `), the sign of apostrophe inversed is non of single qoute. Execution operator is used to execute the content which exist in the clasp of backticks as a shell command (shell command) and the result is accomodated in one variable for then to present it at browser.

Operator of backticks is disable if the mode of safe mode is enable or the shell_exec () is disable. This execution operator is just for a while and only applied in the operation system of * nix (Unix and Linux) with Web Server Apache.

Pay attention to the example of using execute operator at script as following:

File name: backticks.php


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

<body>
<h1>The example for using Execution Operator</h1>
<?
	$q = `ls - al`;
	echo "<pre>$q</pre>";
?>
</body>
</html>


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

| Give Your Opinion | Recommend
Share and Bookmark to: These icons link to social bookmarking sites where readers can share and discover new web pages.
digg del.icio.us technorati Ma.gnolia BlinkList

Recommended articles by other readers:
Web Services: How PHP Kiss VB.NET? (Part 1)
Chart: How to Build Cool Animation Real Time Chart
Joomla: Fast Road to Understand Component Programming
Email: Send Attachement Mail
mod_rewrite - Part 1: create your "fantasy" URL

What do You Think?
Your Name *:
Email *:
(Will not be published)
Website/URL:
Your Comment *:
* Required


615
posting