Please wait while the page is being loaded Skip this advertisement >
Thursday | 4 December, 2008
Strings and PHP
Gavin Sherry (PC World) 02/09/2001 14:06:04

If you read the 'PHP Hypertext Preprocessor' column, you might have been wondering about some of the peculiarities of string handling with PHP. Strings, simply, consist of one or more characters in sequence. In PHP, $s = "string" creates a string variable 's' that contains the string "string".

What about the more complicated strings in last month's example? One string was "The time is ".date('D M d H:i:s T Y')."\n"; in fact, this is three sub-strings.

How does this work? PHP allows you to append strings to other strings using the '.' (full stop) character. When the PHP script gets executed and our example above runs, PHP reads it as follows: build a string from the text "The time is", append the results of a call to the date() function, then append '\n' (a new line) to that. This can be really useful when your programs get information from several sources and you need to collate it.

Interacting with files

One of the best applications for PHP is delivering content stored in files or databases. In the first case, PHP makes available a range of functions to use when interacting with files (see www.php.net/manual/en/ref.filesystem.php for a complete list). One of the easiest ways to retrieve data from a file with PHP is to use the function fpassthru(); an example follows. First, put some random text into a file and call it 'data.txt'. Then create this script:

<HTML>
<BODY>
<PRE>
<?
$fp = fopen("data.txt","r");
fpassthru($fp);
?>
</PRE>
</BODY>
</HTML>
Save the script as fpassthru.php in the same directory as data.txt on your PHP-enabled Web server (for PHP 4 and Apache Web server software and installation details, see the cover CD). Requesting the page from your Web server will give you the contents of the file in an HTML document.

How does this work? The fopen() function opens the file data.txt for reading at the beginning of the file (you can open files in other modes; find a full list at www.php.net/manual/en/function.fopen.php).

The fopen() function returns a file pointer, which is a variable needed to tell the other file system functions which file you wish to manipulate. In our example, we supply fpassthru() with the file pointer for data.txt. As its name suggests, fpassthru() reads each line from the file, and outputs it. Notice that we do not need to close the file; fpassthru() does that.

Another way to replicate the functionality of fpassthru, but to have more control over what is read from the file, is to use fgets(). This function returns a line, or a portion thereof, as a string and moves the current position in the file forward one line. For example, when you call fopen() in read mode, the current position is set to the first line. By calling fgets($fp,100), the first 100 characters of the file pointed to by $fp are returned (or the whole line if that line is fewer than 100 characters long), and the current position in the file is set to the second line. To see what this allows us to do, replace the call to fpassthru() with the following:

$i=1;
while(!feof($fp)) { echo "Line $i: ".fgets($fp,1024); $i++; } fclose($fp);

Save this as fgets.php and request it from your Web server. You will see each line of your data.txt file displayed on the line number on the left margin.

New features

fgets.php introduces some new aspects of PHP. One is the while loop, which continues to execute the code inside its curly braces - { } - while the argument to while() remains true.

Like most programming languages, PHP is based on bivalent evaluation - truth and falsity. In PHP, the value 0 denotes the latter, and any other value the former. The bang (or exclamation mark) reverses the truth or falsity of the expression following it. For example, !1, !-1, !1234 are all false, while !0 is true. The bang is used in fgets.php to reverse the value returned by feof() - a function that indicates if the current file position is the end of the file. So, the while loop condition reads 'loop while the current line is not the end of the file'.

The last new feature of PHP revealed in fgets.php is that of incrimination. The line $i++ is equivalent to $i = $i + 1. The '++' simply means 'increment by one'.

There are many other ways to read data from files with PHP, exploration of which is left as an exercise.

Computerworld Buyer's Guide - Vendors Matched to this Article
More about Apache
Computerworld Buyer's Guide - Vendors Matched to this Article
Additional Resources
Executive Guides
Whitepapers
Zones
Zone logoZones provide focussed content from Computerworld and leading technology partners.
Newsletter Subscription
Sign up for our Computerworld newsletters!
RSS Feeds

Comments

Strings in a PHP is only

Strings in a PHP is only properl;y understood by a high level language programmer.

------------------------
sea plants...sea grapes...plant roots...phytoplanktons...sea plant pictures...seagrass...seaweed...easy aquarium plants...deep sea plants...Limu Moui...Landscaping...End of sea plants...underwater plants...Sea coral...Sea crabs

Market Place

 

Smart SOA World Tour

Discover how SOA can create smarter outcomes for your business.

Attend and learn:

  • How SOA is helping leading companies to become more agile
  • Where you should be applying SOA processes in your company
  • The top SOA implementation mistakes to avoid

Click here for more information.
Whitepaper

IT Service Management Needs and Adoption Trends: An Analysis of a Global Survey of IT Executives

IT executives face the need to improve service delivery with limited resource increases. Two common strategies for achieving this are network and systems management tools and datacenter consolidation. Read on to disocover how you can make a strong business case for IT Consolidation.

Enterprise IT Buyer's Guide
Find Technology Vendors Fast
 
Find vendors by name | Find by category
Sponsored Links