php to php obj

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John7481

    php to php obj

    Hi All,

    Is there any tool to convert the .php files into its object files in
    deploying the files to other's server like java classes are deployed?

    Thanks in advance

    --AR
  • Tim Tyler

    #2
    Re: php to php obj

    John7481 <arjohn7481@hot mail.com> wrote or quoted:
    [color=blue]
    > Is there any tool to convert the .php files into its object files in
    > deploying the files to other's server like java classes are deployed?[/color]

    To what end?

    Do you want a PHP obfuscator? They tend not to be needed - since the code
    remains on the server.

    Do you want a PHP squeezer? Again - since PHP remains on the server
    that is of reduced importance.

    PHP obfuscators and squeezers are out there - but what exactly
    are you looking for?
    --
    __________
    |im |yler http://timtyler.org/ tim@tt1lock.org Remove lock to reply.

    Comment

    • Phil Roberts

      #3
      Re: php to php obj

      With total disregard for any kind of safety measures Tim Tyler
      <tim@tt1lock.or g> leapt forth and uttered:
      [color=blue]
      > John7481 <arjohn7481@hot mail.com> wrote or quoted:
      >[color=green]
      >> Is there any tool to convert the .php files into its object
      >> files in deploying the files to other's server like java
      >> classes are deployed?[/color]
      >
      > To what end?
      >
      > Do you want a PHP obfuscator? They tend not to be needed -
      > since the code remains on the server.
      >
      > Do you want a PHP squeezer? Again - since PHP remains on the
      > server that is of reduced importance.
      >
      > PHP obfuscators and squeezers are out there - but what exactly
      > are you looking for?[/color]

      I think he's asking for a way to compile PHP into it's raw bytecode
      state in the way that Java class files are.

      This isn't possible in PHP. But if you use an optimizer such as
      Zend or Turck MMCache they achieve a similar result by caching the
      interpreted code on the server.

      --
      There is no signature.....

      Comment

      • John7481

        #4
        Re: php to php obj

        I have to deploy the code to a 3rd party server and I dont want them
        to access my php code. How this is possible?

        --AR

        Tim Tyler <tim@tt1lock.or g> wrote in message news:<Hn1yw0.29 J@bath.ac.uk>.. .[color=blue]
        > John7481 <arjohn7481@hot mail.com> wrote or quoted:
        >[color=green]
        > > Is there any tool to convert the .php files into its object files in
        > > deploying the files to other's server like java classes are deployed?[/color]
        >
        > To what end?
        >
        > Do you want a PHP obfuscator? They tend not to be needed - since the code
        > remains on the server.
        >
        > Do you want a PHP squeezer? Again - since PHP remains on the server
        > that is of reduced importance.
        >
        > PHP obfuscators and squeezers are out there - but what exactly
        > are you looking for?[/color]

        Comment

        • Tim Tyler

          #5
          Re: php to php obj

          John7481 <arjohn7481@hot mail.com> wrote or quoted:
          [color=blue]
          > I have to deploy the code to a 3rd party server and I dont want them
          > to access my php code. How this is possible?[/color]

          A PHP obfuscator is one possibility.

          http://google.com/search?q="PHP+o bfuscator" seems to have a few of these.
          --
          __________
          |im |yler http://timtyler.org/ tim@tt1lock.org Remove lock to reply.

          Comment

          • Justin Koivisto

            #6
            Re: php to php obj

            John7481 wrote:
            [color=blue]
            > Tim Tyler <tim@tt1lock.or g> wrote in message news:<Hn1yw0.29 J@bath.ac.uk>.. .
            >[color=green]
            >>John7481 <arjohn7481@hot mail.com> wrote or quoted:
            >>
            >>[color=darkred]
            >>>Is there any tool to convert the .php files into its object files in
            >>>deploying the files to other's server like java classes are deployed?[/color]
            >>
            >>To what end?
            >>
            >>Do you want a PHP obfuscator? They tend not to be needed - since the code
            >>remains on the server.
            >>
            >>Do you want a PHP squeezer? Again - since PHP remains on the server
            >>that is of reduced importance.
            >>
            >>PHP obfuscators and squeezers are out there - but what exactly
            >>are you looking for?[/color]
            >
            > I have to deploy the code to a 3rd party server and I dont want them
            > to access my php code. How this is possible?
            >
            > --AR
            >[/color]

            You may want to look at Zend Encoder:
            Perforce, a software company, offers a wide range of enterprise DevOps solution across the software development lifecycle.


            Also of some interest may be Zend SafeGuard Site:
            Perforce, a software company, offers a wide range of enterprise DevOps solution across the software development lifecycle.


            I do not know how they work (or if they do), what the specifics on
            support are, or if there are any opensource alternatives.

            --
            Justin Koivisto - spam@koivi.com
            PHP POSTERS: Please use comp.lang.php for PHP related questions,
            alt.php* groups are not recommended.

            Comment

            • John7481

              #7
              Re: php to php obj

              Thank you all for your valuable suggestions.

              --AR

              Phil Roberts <philrob@HOLYfl atnetSHIT.net> wrote in message news:<Xns941AC7 90A2707philrobe rts@216.166.71. 242>...[color=blue]
              > With total disregard for any kind of safety measures Tim Tyler
              > <tim@tt1lock.or g> leapt forth and uttered:
              >[color=green]
              > > John7481 <arjohn7481@hot mail.com> wrote or quoted:
              > >[color=darkred]
              > >> Is there any tool to convert the .php files into its object
              > >> files in deploying the files to other's server like java
              > >> classes are deployed?[/color]
              > >
              > > To what end?
              > >
              > > Do you want a PHP obfuscator? They tend not to be needed -
              > > since the code remains on the server.
              > >
              > > Do you want a PHP squeezer? Again - since PHP remains on the
              > > server that is of reduced importance.
              > >
              > > PHP obfuscators and squeezers are out there - but what exactly
              > > are you looking for?[/color]
              >
              > I think he's asking for a way to compile PHP into it's raw bytecode
              > state in the way that Java class files are.
              >
              > This isn't possible in PHP. But if you use an optimizer such as
              > Zend or Turck MMCache they achieve a similar result by caching the
              > interpreted code on the server.[/color]

              Comment

              Working...