Results 1 to 2 of 2

Thread: very simple convertion asp 2 php

  1. #1

    Thread Starter
    Hyperactive Member RS_Arm's Avatar
    Join Date
    Mar 2007
    Location
    Planet Earth
    Posts
    282

    Unhappy very simple convertion asp 2 php

    Hello.
    I need to use this code in asp to work in php.
    I just can't figure it out alone.
    Can anybody help me, please?

    Code:
    posicaoHead = InStr(1, linha, "Te")
    linha = Right(linha, Len(linha) - posicaoHead - 1)
    Thank you.

  2. #2
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: very simple convertion asp 2 php

    PHP Code:
    $posicaoHead strpos($linha'Te');
    $linha substr($linha, -(strlen($linha) - $posicaoHead 1)); 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width