Jump to content

Converting Perl code to PHP


BusyBeet

Recommended Posts

I'm trying to convert a perl script I wrote some time ago to PHP.  It checks the form submitted and uses some reg expressions to format the text of the textarea fields and display the formatted text.

Since I'm fairly new to PHP, I don't know the proper syntax for making an array of the content and spliting it by newline, then running through some elseif logic to check for types of content then substituting in a foreach loop.

For example, in Perl I had:

@lines = split(\n,$tableofcontents);

foreach (@lines, $wz) {

if ($wz =~  '[0-9]\.(.*?)\W' ) {

s|([0-9]\.(.*?)\W|<a href=\"\#H$1\"\>$1. $2\<\/a\>\<br\>\n|g;


etc, etc...

SO I tried rewriting it as...


$wordz == explode('\n',$toc);

foreach ($wordz as $wz) {

if ($wz =~  '[0-9]\.(.*?)\W' ) {




...It's erroring on the foreach line - what is the proper way to make and loop an array from one form field?

Thanks!

BB



Link to comment
https://forums.phpfreaks.com/topic/18655-converting-perl-code-to-php/
Share on other sites

You'll want to use:
$wordz = explode("\n", $toc);

rather than $wordz == explode('\n',$toc);

== is the comparision operater, checks whether something on the left is equal to something on the right.
= is the assignment operator

Also notice I use double quotes around \n. This becuase PHP will treat \n as a string if use single quotes, rather than as a new line character.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.