Skip to main content

Perl-style regular expressions( preg_replace_callback)


preg_replace_callback() - 
                                          With preg_replace(), the function itself is responsible for handling the
replacement procedure. With preg_replace_callback(), the handling of the replacement procedure is
handed off to another function to take care of. The syntax is identical to preg_replace() except where
the replacement text would be located, a function name is present. This function is responsible for
handling any of the replacement changes to the text that matches the pattern searched.

<?php
$text = "Dear <pnm>S</pnm>Ortiz,<br>&nbsp;&nbsp;&nbsp;&nbsp;I
would like to thank you and <pnf>F</pnf>Picard for taking the
time in talking to me today. Please feel free to contact me if
you have any additional
questions.<br>Sincerely,<br><pnm>E</pnm>Bob Riker";
function proper_name_m($matches) {
$titles = array(
'E' => 'Mr. ',
'S' => 'Sr. ',
'F' => 'M ');
if (isset($titles[$matches[1]])) {
return $titles[$matches[1]];
} else {
return $matches[1];
}
}
function proper_name_f($matches) {
$titles = array(
'E' => 'Ms. ',
'S' => 'Sra. ',
'F' => 'Mme ');
if (isset($titles[$matches[1]])) {
return $titles[$matches[1]];
} else {
return $matches[1];
}
}
$new_text = preg_replace_callback("/<pnm>(.*)<\/pnm>/U",
'proper_name_m', $text);
$final_text = preg_replace_callback("/<pnf>(.*)<\/pnf>/U",
'proper_name_f', $new_text);
print $final_text;
?>

In the code presented above, a letter (which looks like a follow-up to a sales or interview meeting) has
been written. The user did not know the proper titles to use with the names, so they were taught to
place 'E' for English titles, 'S' for Spanish titles and 'F' for French titles. In addition, because of the
need to address both genders, they were also taught to identify the gender in the tags used:
<pnm>$language_code</pnm> for male and <pnf>$language_code</pnf> for female. The function
proper_name_m handles the replacement for the <pnm> tags and proper_name_f handles the
<pnf> tags. The first preg_replace_callback function handles the changing of the male titles
and then places the new text into the variable $new_text. The second
preg_replace_callback function handles the changing of the female titles and then finalizes
the text by placing the replaced contents in the variable $final_text.

Comments

Popular posts from this blog

PHP INTRODUCTION

                     PHP  (recursive acronym for  PHP: Hypertext Preprocessor ) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. PHP stands for  P HP:  H ypertext  P reprocessor PHP is a server-side scripting language, like ASP PHP scripts are executed on the server PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.) PHP is an open source software PHP is free to download and use Why PHP? PHP runs on different platforms (Windows, Linux, Unix, etc.) PHP is compatible with almost all servers used today (Apache, IIS, etc.) PHP is FREE to download from the official PHP resource:  www.php.net PHP is easy to learn and runs efficiently on the server side What can PHP do? Anything. PHP is mainly focused on server-side scripting, so you can do anything any other CGI program can do, such as collect form data, generate dynam

MySQL General Architecture

        MySQL operates in a networked environment using a client/server architecture. In other words, a central  program acts as a server, and various client programs connect to the server to make requests. A MySQL  installation has the following major components: MySQL Server, Client programs and MySQL non client  utilities.  MySQL Server MySQL Server, or mysqld, is the database server program. The server manages access to the actual  database (schema) on disk and in memory. MySQL Server is multi-threaded and supports many  simultaneous client connections. Clients can connect via several connection protocols. For managing  database contents, the MySQL server features a modular architecture that supports multiple storage engines  that handle different types of tables (for example, it supports both transactional and non-transactional  tables). Keep in mind the difference between a server and a host. The server is software (the MySQL server  program mysqld). Server characteristi