R'twick Niceorgaw wrote:
Hi all,
I'm pretty much a stranger to perl and now got to convert a perl script to
php. however, at once place I can not understand what the lines are doing
and what could be the equivalent of them in php. Could some one help me with
this ?

Here's my perl code :

   $choice=~s/\.rm//;
$choice = str_replace('.rm', '', $choice);
   $choicedir=substr($choice, 0, 3);
$choicedir=substr($choice, 0, 3);
   $choicedir=~s/^AKM/ogx/
$choice = preg_replace('/^AKM/', 'ogx', $choice);



--

Sean


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to